@faststore/cli 4.1.0-dev.0 → 4.1.0
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/README.md +1 -1
- package/bin/dev.js +0 -0
- package/package.json +20 -23
package/README.md
CHANGED
|
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
|
|
|
30
30
|
$ faststore COMMAND
|
|
31
31
|
running command...
|
|
32
32
|
$ faststore (--version)
|
|
33
|
-
@faststore/cli/4.1.0
|
|
33
|
+
@faststore/cli/4.1.0 linux-x64 node-v24.13.0
|
|
34
34
|
$ faststore --help [COMMAND]
|
|
35
35
|
USAGE
|
|
36
36
|
$ faststore COMMAND
|
package/bin/dev.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@faststore/cli",
|
|
3
|
-
"version": "4.1.0
|
|
3
|
+
"version": "4.1.0",
|
|
4
4
|
"description": "FastStore CLI",
|
|
5
5
|
"author": "Emerson Laurentino @emersonlaurentino",
|
|
6
6
|
"type": "module",
|
|
@@ -26,12 +26,10 @@
|
|
|
26
26
|
"/oclif.manifest.json"
|
|
27
27
|
],
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@antfu/ni": "
|
|
30
|
-
"@
|
|
31
|
-
"@
|
|
32
|
-
"@graphql-
|
|
33
|
-
"@graphql-tools/merge": "catalog:",
|
|
34
|
-
"@graphql-tools/utils": "catalog:",
|
|
29
|
+
"@antfu/ni": "0.21.12",
|
|
30
|
+
"@graphql-codegen/cli": "6.1.1",
|
|
31
|
+
"@graphql-tools/merge": "9.1.1",
|
|
32
|
+
"@graphql-tools/utils": "10.10.1",
|
|
35
33
|
"@inquirer/confirm": "^5.1.19",
|
|
36
34
|
"@inquirer/prompts": "^5.1.2",
|
|
37
35
|
"@oclif/core": "^4",
|
|
@@ -47,22 +45,24 @@
|
|
|
47
45
|
"oclif": "^4",
|
|
48
46
|
"ora": "5.4.1",
|
|
49
47
|
"prettier": "^3.1.0",
|
|
50
|
-
"resolve-pkg": "^3.0.0"
|
|
48
|
+
"resolve-pkg": "^3.0.0",
|
|
49
|
+
"@faststore/api": "4.1.0",
|
|
50
|
+
"@faststore/core": "4.1.0"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"@types/degit": "^2.8.6",
|
|
54
54
|
"@types/fs-extra": "^11",
|
|
55
|
-
"@types/node": "
|
|
56
|
-
"graphql": "
|
|
55
|
+
"@types/node": "20.19.13",
|
|
56
|
+
"graphql": "16.11.0",
|
|
57
57
|
"shx": "^0.3.3",
|
|
58
58
|
"ts-node": "^10.9.1",
|
|
59
|
-
"tslib": "
|
|
59
|
+
"tslib": "2.8.1",
|
|
60
60
|
"tsup": "^8.5.0",
|
|
61
|
-
"typescript": "
|
|
62
|
-
"vitest": "
|
|
61
|
+
"typescript": "5.9.3",
|
|
62
|
+
"vitest": "4.0.7"
|
|
63
63
|
},
|
|
64
64
|
"peerDependencies": {
|
|
65
|
-
"graphql": "
|
|
65
|
+
"graphql": "16.11.0"
|
|
66
66
|
},
|
|
67
67
|
"publishConfig": {
|
|
68
68
|
"access": "public"
|
|
@@ -81,13 +81,6 @@
|
|
|
81
81
|
"@oclif/plugin-not-found"
|
|
82
82
|
]
|
|
83
83
|
},
|
|
84
|
-
"scripts": {
|
|
85
|
-
"build": "tsup-node",
|
|
86
|
-
"test": "vitest run src/**/*.test.ts",
|
|
87
|
-
"postpack": "shx rm -f oclif.manifest.json",
|
|
88
|
-
"prepack": "na run build && oclif readme",
|
|
89
|
-
"version": "oclif readme && git add README.md"
|
|
90
|
-
},
|
|
91
84
|
"bugs": "https://github.com/vtex/faststore/issues",
|
|
92
85
|
"keywords": [
|
|
93
86
|
"oclif"
|
|
@@ -96,5 +89,9 @@
|
|
|
96
89
|
"engines": {
|
|
97
90
|
"node": ">=20"
|
|
98
91
|
},
|
|
99
|
-
"
|
|
100
|
-
|
|
92
|
+
"scripts": {
|
|
93
|
+
"build": "tsup-node",
|
|
94
|
+
"test": "vitest run src/**/*.test.ts",
|
|
95
|
+
"version": "oclif readme && git add README.md"
|
|
96
|
+
}
|
|
97
|
+
}
|