@onexapis/cli 1.1.15 → 1.1.16
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/dist/cli.js +0 -0
- package/dist/cli.mjs +0 -0
- package/package.json +10 -11
package/dist/cli.js
CHANGED
|
File without changes
|
package/dist/cli.mjs
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@onexapis/cli",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.16",
|
|
4
4
|
"description": "CLI tool for OneX theme development - scaffolds themes using @onexapis/core",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -15,13 +15,6 @@
|
|
|
15
15
|
"require": "./dist/index.js"
|
|
16
16
|
}
|
|
17
17
|
},
|
|
18
|
-
"scripts": {
|
|
19
|
-
"build": "tsup",
|
|
20
|
-
"dev": "tsup --watch",
|
|
21
|
-
"type-check": "tsc --noEmit",
|
|
22
|
-
"lint": "eslint src --ext .ts",
|
|
23
|
-
"prepublishOnly": "pnpm run type-check && pnpm run build"
|
|
24
|
-
},
|
|
25
18
|
"keywords": [
|
|
26
19
|
"onex",
|
|
27
20
|
"cli",
|
|
@@ -48,7 +41,6 @@
|
|
|
48
41
|
"registry": "https://registry.npmjs.org/"
|
|
49
42
|
},
|
|
50
43
|
"dependencies": {
|
|
51
|
-
"@onexapis/core": "workspace:*",
|
|
52
44
|
"@tanstack/react-query": "^5.90.16",
|
|
53
45
|
"@aws-sdk/client-s3": "^3.470.0",
|
|
54
46
|
"adm-zip": "^0.5.16",
|
|
@@ -67,7 +59,8 @@
|
|
|
67
59
|
"node-fetch": "^3.3.2",
|
|
68
60
|
"open": "^10.1.0",
|
|
69
61
|
"ora": "^8.0.1",
|
|
70
|
-
"ws": "^8.18.0"
|
|
62
|
+
"ws": "^8.18.0",
|
|
63
|
+
"@onexapis/core": "1.0.2"
|
|
71
64
|
},
|
|
72
65
|
"devDependencies": {
|
|
73
66
|
"@types/adm-zip": "^0.5.7",
|
|
@@ -87,5 +80,11 @@
|
|
|
87
80
|
],
|
|
88
81
|
"engines": {
|
|
89
82
|
"node": ">=18.0.0"
|
|
83
|
+
},
|
|
84
|
+
"scripts": {
|
|
85
|
+
"build": "tsup",
|
|
86
|
+
"dev": "tsup --watch",
|
|
87
|
+
"type-check": "tsc --noEmit",
|
|
88
|
+
"lint": "eslint src --ext .ts"
|
|
90
89
|
}
|
|
91
|
-
}
|
|
90
|
+
}
|