@symbo.ls/cli 0.6.10 → 0.6.11
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 +7 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@symbo.ls/cli",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.11",
|
|
4
4
|
"description": "Fetch your Symbols configuration",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"author": "Symbols",
|
|
@@ -8,18 +8,21 @@
|
|
|
8
8
|
"private": false,
|
|
9
9
|
"type": "module",
|
|
10
10
|
"bin": {
|
|
11
|
-
"symbo-ls": "
|
|
11
|
+
"symbo-ls": "bin/fetch.js"
|
|
12
12
|
},
|
|
13
13
|
"scripts": {
|
|
14
|
-
"start": "node bin/fetch.js"
|
|
14
|
+
"start": "node bin/fetch.js",
|
|
15
|
+
"vpush": "git add . && git commit -am 'version update' && git push",
|
|
16
|
+
"vpatch": "npm version patch && npm publish"
|
|
15
17
|
},
|
|
16
18
|
"dependencies": {
|
|
17
19
|
"chalk": "^5.0.0",
|
|
18
20
|
"node-fetch": "^3.1.0",
|
|
21
|
+
"commander": "^8.3.0",
|
|
19
22
|
"v8-compile-cache": "^2.3.0"
|
|
20
23
|
},
|
|
21
24
|
"devDependencies": {
|
|
22
|
-
"
|
|
25
|
+
"np": "^7.6.0"
|
|
23
26
|
},
|
|
24
27
|
"env": {
|
|
25
28
|
"process": true
|