-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 1.97 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 1.97 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
{
"name": "architext",
"version": "0.0.6",
"description": "The DDAD (Document-Driven AI Development) protocol and prompt scaffolder for AI-native engineering.",
"type": "module",
"scripts": {
"build": "tsup",
"dev": "tsx src/index.ts",
"lint": "eslint . && prettier --check .",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"test:run": "vitest run",
"prepublishOnly": "npm run build",
"prepare": "husky"
},
"lint-staged": {
"ignore": [
"website/.astro/**"
],
"*.{js,ts,tsx,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"files": [
"dist",
"README.md",
"README.zh-CN.md",
"CHANGELOG.md",
"LICENSE"
],
"bin": {
"architext": "./dist/index.js",
"archi": "./dist/index.js"
},
"keywords": [
"architext",
"ddad",
"document-driven",
"ai",
"llm",
"prompt-engineering",
"scaffold",
"cli",
"architecture",
"spec",
"template",
"code-generation"
],
"author": "JiuNian3219 <qin0yu0lou@gmail.com>",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^20.3.1",
"@commitlint/config-angular": "^20.3.1",
"@eslint/js": "^9.39.2",
"@types/fs-extra": "^11.0.4",
"@types/node": "^25.2.1",
"@types/node-notifier": "^8.0.5",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.1.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"mock-fs": "^5.5.0",
"prettier": "^3.8.1",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.1",
"vitest": "^4.0.18"
},
"dependencies": {
"@clack/prompts": "^0.11.0",
"cac": "^6.7.14",
"chalk": "^5.6.2",
"fs-extra": "^11.3.3",
"node-notifier": "^10.0.1",
"picocolors": "^1.1.1",
"zod": "^4.3.6"
}
}