-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.16 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@deb-adarsh/ai-stack-kit",
"version": "1.2.0",
"description": "AI Stack Kit — spec-driven skills, subagents, and hooks for Cursor, Copilot, and Claude (CLI + VS Code extension)",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"bin": {
"ai-stack-kit": "dist/cli/index.js",
"aistack": "dist/cli/index.js",
"ai-stack": "dist/cli/index.js"
},
"files": [
"dist",
"templates",
"LICENSE",
"README.md",
"USER_GUIDE.md",
"docs/CLI_GUIDE.md",
"docs/EXTENSION_GUIDE.md"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"prepublishOnly": "npm run build",
"build:catalog": "node scripts/build-catalog.mjs",
"dev:web": "npm run build && npm run build:catalog && npm run dev --prefix web",
"build:web": "npm run build && npm run build:catalog && npm run build --prefix web",
"build:extension": "npm run build && npm run build:catalog && rm -rf extension/templates && cp -R templates extension/templates && cp web/public/catalog.json extension/media/catalog.json && cd extension/webview-ui && npm install && npm run build && cp ../../web/public/catalog.json ../media/catalog/catalog.json && cd .. && npm install && npm run package",
"test:extension": "cd extension && npm run compile-tests && npm test",
"package:extension": "npm run build:extension && cd extension && npm run vsix",
"dev": "tsc --watch",
"start": "node dist/cli/index.js",
"test": "npm run build && node --test dist/cli/__tests__/get-module-versions.test.js dist/pipeline/__tests__/spec-loader.test.js dist/pipeline/__tests__/apply-dry-run.test.js dist/client-adapters/__tests__/adapter-factory.test.js dist/api/__tests__/workspace-api.test.js dist/api/__tests__/profile-spec.test.js",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.ts\""
},
"keywords": [
"cli",
"ide",
"skills",
"cursor",
"vscode",
"development"
],
"author": "Deb Adarsh <debadarsh7@gmail.com>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/deb-adarsh/ai-stack-kit.git"
},
"bugs": {
"url": "https://github.com/deb-adarsh/ai-stack-kit/issues"
},
"homepage": "https://github.com/deb-adarsh/ai-stack-kit#readme",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^11.0.0",
"figures": "^6.0.1",
"inquirer": "^9.2.0",
"js-yaml": "^4.1.0",
"ora": "^7.0.1",
"semver": "^7.5.4",
"table": "^6.8.1",
"tar": "^7.5.13",
"yaml": "^2.8.4",
"zod": "^3.22.0"
},
"devDependencies": {
"@types/inquirer": "^9.0.0",
"@types/jest": "^29.5.0",
"@types/js-yaml": "^4.0.0",
"@types/node": "^20.0.0",
"@types/semver": "^7.5.0",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.55.0",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"ts-jest": "^29.1.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18.0.0"
}
}