@dashai/cli 0.2.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/package.json ADDED
@@ -0,0 +1,61 @@
1
+ {
2
+ "name": "@dashai/cli",
3
+ "version": "0.2.0",
4
+ "description": "DashWise command-line tool: log in, author modules, publish to the marketplace.",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "engines": {
8
+ "node": ">=20"
9
+ },
10
+ "bin": {
11
+ "dashwise": "./dist/bin.js"
12
+ },
13
+ "exports": {
14
+ "./package.json": "./package.json"
15
+ },
16
+ "main": "./dist/bin.js",
17
+ "files": [
18
+ "dist",
19
+ "README.md",
20
+ "LICENSE"
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
+ "dependencies": {
33
+ "@clack/prompts": "^0.8.2",
34
+ "@dashai/sdk": "workspace:*",
35
+ "commander": "^12.1.0",
36
+ "open": "^10.1.0",
37
+ "picocolors": "^1.1.1",
38
+ "tar": "^7.4.3"
39
+ },
40
+ "devDependencies": {
41
+ "@types/node": "^22.10.2",
42
+ "@types/tar": "^6.1.13",
43
+ "tsup": "^8.3.5",
44
+ "typescript": "^5.7.2",
45
+ "vitest": "^2.1.8"
46
+ },
47
+ "publishConfig": {
48
+ "access": "public",
49
+ "provenance": true
50
+ },
51
+ "repository": {
52
+ "type": "git",
53
+ "url": "https://github.com/Intuize/dashwise-cli.git",
54
+ "directory": "packages/cli"
55
+ },
56
+ "keywords": [
57
+ "dashwise",
58
+ "cli",
59
+ "module-authoring"
60
+ ]
61
+ }