@dashai/cli 0.2.1 → 0.2.3
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/bin.js +15 -1
- package/dist/bin.js.map +1 -1
- package/package.json +15 -15
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dashai/cli",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.3",
|
|
4
4
|
"description": "DashWise command-line tool: log in, author modules, publish to the marketplace.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -19,23 +19,13 @@
|
|
|
19
19
|
"README.md",
|
|
20
20
|
"LICENSE"
|
|
21
21
|
],
|
|
22
|
-
"scripts": {
|
|
23
|
-
"build": "tsup",
|
|
24
|
-
"dev": "tsup --watch",
|
|
25
|
-
"test": "vitest run",
|
|
26
|
-
"test:watch": "vitest",
|
|
27
|
-
"typecheck": "tsc --noEmit",
|
|
28
|
-
"lint": "echo 'lint: TODO (eslint config in follow-up)'",
|
|
29
|
-
"clean": "rm -rf dist .turbo coverage",
|
|
30
|
-
"start": "node ./dist/bin.js"
|
|
31
|
-
},
|
|
32
22
|
"dependencies": {
|
|
33
23
|
"@clack/prompts": "^0.8.2",
|
|
34
|
-
"@dashai/sdk": "workspace:*",
|
|
35
24
|
"commander": "^12.1.0",
|
|
36
25
|
"open": "^10.1.0",
|
|
37
26
|
"picocolors": "^1.1.1",
|
|
38
|
-
"tar": "^7.4.3"
|
|
27
|
+
"tar": "^7.4.3",
|
|
28
|
+
"@dashai/sdk": "0.7.0"
|
|
39
29
|
},
|
|
40
30
|
"devDependencies": {
|
|
41
31
|
"@types/node": "^22.10.2",
|
|
@@ -57,5 +47,15 @@
|
|
|
57
47
|
"dashwise",
|
|
58
48
|
"cli",
|
|
59
49
|
"module-authoring"
|
|
60
|
-
]
|
|
61
|
-
|
|
50
|
+
],
|
|
51
|
+
"scripts": {
|
|
52
|
+
"build": "tsup",
|
|
53
|
+
"dev": "tsup --watch",
|
|
54
|
+
"test": "vitest run",
|
|
55
|
+
"test:watch": "vitest",
|
|
56
|
+
"typecheck": "tsc --noEmit",
|
|
57
|
+
"lint": "echo 'lint: TODO (eslint config in follow-up)'",
|
|
58
|
+
"clean": "rm -rf dist .turbo coverage",
|
|
59
|
+
"start": "node ./dist/bin.js"
|
|
60
|
+
}
|
|
61
|
+
}
|