Skip to content

Commit a6bd69b

Browse files
committed
chore(Update package.json and some doc): update package.json and edit the Action and Template file
1 parent f085049 commit a6bd69b

File tree

3 files changed

+18
-6
lines changed

3 files changed

+18
-6
lines changed

.github/contributing.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Hi! We're really excited that you are interested in contributing to AnyWeb. Befo
1010
## Issue Reporting Guidelines
1111

1212
- Always follow the issue template to create new issues.
13-
- Here is some [templates](https://github.com/Littleor/js-conflux-sdk/issues/new/choose) to report a bug, Please use it when reporting a bug.
13+
- Here is some [templates](https://github.com/IdeaLightLabs/AnyWeb-JS-SDK/issues/new/choose) to report a bug, Please use it when reporting a bug.
1414

1515
## Pull Request Guidelines
1616

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ jobs:
2020
with:
2121
tag_name: ${{ github.ref }}
2222
body: |
23-
Please refer to [CHANGELOG.md](https://github.com/Littleor/js-conflux-sdk/blob/master/CHANGELOG.md) for details.
23+
Please refer to [CHANGELOG.md](https://github.com/IdeaLightLabs/AnyWeb-JS-SDK/blob/master/CHANGELOG.md) for details.

package.json

+16-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
{
2-
"name": "anyweb-js-sdk",
2+
"name": "@idealight-labs/anyweb-js-sdk",
33
"description": "AnyWeb JavaScript Software Development Kit",
44
"version": "1.0.0",
55
"license": "LGPL-3.0",
6-
"author": "[email protected]",
7-
"repository": "https://github.com/AnyWeb/anyweb-js-sdk.git",
6+
"author": "[email protected]",
7+
"repository": {
8+
"type": "git",
9+
"url": "git+https://github.com/IdeaLightLabs/AnyWeb-JS-SDK.git"
10+
},
811
"keywords": [
912
"anyweb",
1013
"sdk"
@@ -96,7 +99,7 @@
9699
"lint:fix": "eslint ./src ./test --fix",
97100
"build": "node scripts/build-frontend.js",
98101
"document": "typedoc --plugin typedoc-plugin-markdown --out docs/api/ src/index.ts",
99-
"prepublishOnly": "npm run build",
102+
"prepublishOnly": "npm run build:lib && npm run build",
100103
"test": "jest --coverage",
101104
"build:lib": "tsc",
102105
"dev": "tsc --watch",
@@ -109,5 +112,14 @@
109112
"commitizen": {
110113
"path": "./node_modules/cz-conventional-changelog"
111114
}
115+
},
116+
"bugs": {
117+
"url": "https://github.com/IdeaLightLabs/AnyWeb-JS-SDK/issues"
118+
},
119+
"homepage": "https://github.com/IdeaLightLabs/AnyWeb-JS-SDK#readme",
120+
"directories": {
121+
"example": "example",
122+
"lib": "lib",
123+
"test": "test"
112124
}
113125
}

0 commit comments

Comments
 (0)