@ai-driven-dev/cli 2.13.2
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 +362 -0
- package/dist/cli.js +6241 -0
- package/package.json +48 -0
package/package.json
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@ai-driven-dev/cli",
|
|
3
|
+
"version": "2.13.2",
|
|
4
|
+
"description": "AI-Driven Development CLI — distribute the AIDD framework across AI coding assistants",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/cli.js",
|
|
7
|
+
"bin": {
|
|
8
|
+
"aidd": "dist/cli.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"dist",
|
|
12
|
+
"README.md"
|
|
13
|
+
],
|
|
14
|
+
"engines": {
|
|
15
|
+
"node": ">=24",
|
|
16
|
+
"pnpm": ">=9"
|
|
17
|
+
},
|
|
18
|
+
"dependencies": {
|
|
19
|
+
"@inquirer/prompts": "^7.0.0",
|
|
20
|
+
"commander": "^12.0.0"
|
|
21
|
+
},
|
|
22
|
+
"devDependencies": {
|
|
23
|
+
"@biomejs/biome": "^2.4.7",
|
|
24
|
+
"@commitlint/cli": "^19.0.0",
|
|
25
|
+
"@commitlint/config-conventional": "^19.0.0",
|
|
26
|
+
"@types/node": "^24.0.0",
|
|
27
|
+
"@vitest/coverage-v8": "^2.1.9",
|
|
28
|
+
"jscpd": "^4.0.0",
|
|
29
|
+
"knip": "^5.0.0",
|
|
30
|
+
"lefthook": "^1.13.1",
|
|
31
|
+
"tsup": "^8.0.0",
|
|
32
|
+
"typescript": "^5.0.0",
|
|
33
|
+
"vitest": "^2.0.0"
|
|
34
|
+
},
|
|
35
|
+
"scripts": {
|
|
36
|
+
"build": "tsup",
|
|
37
|
+
"dev": "tsup --watch",
|
|
38
|
+
"test": "pnpm build && vitest run",
|
|
39
|
+
"test:watch": "vitest",
|
|
40
|
+
"typecheck": "tsc --noEmit",
|
|
41
|
+
"lint": "biome check .",
|
|
42
|
+
"format": "biome format --write .",
|
|
43
|
+
"knip:production": "knip --production",
|
|
44
|
+
"jscpd": "jscpd src/",
|
|
45
|
+
"pack:local": "pnpm build && pnpm pack --pack-destination ./dist",
|
|
46
|
+
"install:local": "pnpm run pack:local && npm install -g ./dist/ai-driven-dev-cli-$(node -p \"require('./package.json').version\").tgz --force"
|
|
47
|
+
}
|
|
48
|
+
}
|