-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.12 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.12 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
{
"name": "ai-dev-os",
"version": "1.0.9",
"description": "CLI tool for AI Dev OS — setup, update, and maintain AI coding guidelines",
"keywords": [
"ai",
"coding",
"guidelines",
"cli",
"dev-os",
"claude-code",
"cursor",
"kiro"
],
"license": "MIT",
"author": "yunbow",
"repository": {
"type": "git",
"url": "git+https://github.com/yunbow/ai-dev-os-cli.git"
},
"type": "module",
"bin": {
"ai-dev-os": "dist/index.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest",
"test:run": "vitest run",
"lint": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@inquirer/prompts": "^7.0.0",
"chalk": "^5.4.1",
"commander": "^13.1.0",
"deepmerge": "^4.3.1",
"fs-extra": "^11.2.0",
"ora": "^8.2.0",
"simple-git": "^3.27.0",
"yaml": "^2.7.1"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.0.0",
"tsup": "^8.4.0",
"typescript": "^5.8.2",
"vitest": "^3.1.1"
}
}