skill-atlas-cli 0.1.12 → 0.1.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +9 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "skill-atlas-cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.17",
|
|
4
4
|
"description": "skill-atlas CLI - 虾小宝 命令行工具",
|
|
5
5
|
"homepage": "https://skillatlas.cn/",
|
|
6
6
|
"type": "module",
|
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
"bin": {
|
|
9
9
|
"skill-atlas": "bin/cli.js",
|
|
10
10
|
"skillatlas": "bin/cli.js",
|
|
11
|
+
"skillAtlas": "bin/cli.js",
|
|
11
12
|
"skill-atlas-cli": "bin/cli.js"
|
|
12
13
|
},
|
|
13
14
|
"scripts": {
|
|
@@ -16,9 +17,9 @@
|
|
|
16
17
|
"start": "node bin/cli.js",
|
|
17
18
|
"prepare": "npm run build",
|
|
18
19
|
"prepublishOnly": "npm run build",
|
|
19
|
-
"release:patch": "npm version patch && npm publish",
|
|
20
|
-
"release:minor": "npm version minor && npm publish",
|
|
21
|
-
"release:major": "npm version major && npm publish"
|
|
20
|
+
"release:patch": "npm whoami && npm version patch && npm publish --registry https://registry.npmjs.org/",
|
|
21
|
+
"release:minor": "npm whoami && npm version minor && npm publish --registry https://registry.npmjs.org/",
|
|
22
|
+
"release:major": "npm whoami && npm version major && npm publish --registry https://registry.npmjs.org/"
|
|
22
23
|
},
|
|
23
24
|
"files": [
|
|
24
25
|
"bin",
|
|
@@ -35,6 +36,10 @@
|
|
|
35
36
|
],
|
|
36
37
|
"author": "",
|
|
37
38
|
"license": "MIT",
|
|
39
|
+
"publishConfig": {
|
|
40
|
+
"access": "public",
|
|
41
|
+
"registry": "https://registry.npmjs.org/"
|
|
42
|
+
},
|
|
38
43
|
"dependencies": {
|
|
39
44
|
"@clack/prompts": "^1.1.0",
|
|
40
45
|
"cac": "^7.0.0",
|