@montage-sh/cli 0.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 +80 -0
- package/dist/cli.js +225313 -0
- package/dist/cli.js.map +1 -0
- package/package.json +44 -0
package/package.json
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@montage-sh/cli",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Command-line interface for Montage prompt management",
|
|
5
|
+
"files": [
|
|
6
|
+
"dist",
|
|
7
|
+
"README.md"
|
|
8
|
+
],
|
|
9
|
+
"bin": {
|
|
10
|
+
"montage": "dist/cli.js"
|
|
11
|
+
},
|
|
12
|
+
"publishConfig": {
|
|
13
|
+
"access": "public"
|
|
14
|
+
},
|
|
15
|
+
"scripts": {
|
|
16
|
+
"build": "tsup --config tsup.config.ts",
|
|
17
|
+
"build:sea": "npm run build && node scripts/build-sea.mjs",
|
|
18
|
+
"dev": "tsup --config tsup.config.ts --watch",
|
|
19
|
+
"typecheck": "tsc --project tsconfig.json --noEmit",
|
|
20
|
+
"lint": "eslint src --ext .ts",
|
|
21
|
+
"prepublishOnly": "npm run build && npm run typecheck",
|
|
22
|
+
"test": "npm run test:unit && npm run test:integration",
|
|
23
|
+
"test:unit": "tsx --test \"src/lib/**/*.test.ts\"",
|
|
24
|
+
"pretest:auth-lifecycle": "npm run build",
|
|
25
|
+
"test:auth-lifecycle": "tsx --test src/auth-lifecycle.test.ts",
|
|
26
|
+
"pretest:integration": "npm run build",
|
|
27
|
+
"test:integration": "tsx --test src/integration.test.ts"
|
|
28
|
+
},
|
|
29
|
+
"engines": {
|
|
30
|
+
"node": ">=20.0.0"
|
|
31
|
+
},
|
|
32
|
+
"dependencies": {
|
|
33
|
+
"commander": "^12.1.0",
|
|
34
|
+
"diff": "^8.0.3",
|
|
35
|
+
"yaml": "^2.8.1"
|
|
36
|
+
},
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"@types/node": "^20.17.0",
|
|
39
|
+
"postject": "^1.0.0-alpha.6",
|
|
40
|
+
"tsx": "^4.20.6",
|
|
41
|
+
"tsup": "^8.5.0",
|
|
42
|
+
"typescript": "^5.9.3"
|
|
43
|
+
}
|
|
44
|
+
}
|