-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.44 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.44 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "qdspec",
"version": "0.1.15",
"description": "Breakthrough Method of Agile AI-driven Development",
"keywords": [
"agile",
"ai",
"orchestrator",
"development",
"methodology",
"agents",
"qd"
],
"main": "dist/index.js",
"bin": {
"qd": "dist/index.js"
},
"scripts": {
"build": "tsc -p tsconfig.json && cp src/domains/ide/platform-codes.yaml dist/domains/ide/",
"qd:init": "node dist/index.js init",
"smoke:init": "node test/smoke-init.js",
"test": "jest --config jest.config.ts",
"test:watch": "jest --config jest.config.ts --watch"
},
"dependencies": {
"@clack/core": "^1.0.0",
"@clack/prompts": "^1.0.0",
"@kayvan/markdown-tree-parser": "^1.6.1",
"chalk": "^4.1.2",
"commander": "^14.0.0",
"csv-parse": "^6.1.0",
"glob": "^13.0.0",
"ignore": "^7.0.5",
"js-yaml": "^4.1.0",
"picocolors": "^1.1.1",
"semver": "^7.6.3",
"xml2js": "^0.6.2",
"yaml": "^2.7.0"
},
"engines": {
"node": ">=20.0.0"
},
"files": [
"dist",
"README.md",
"package.json"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^25.5.2",
"ajv": "^8.18.0",
"ajv-formats": "^3.0.1",
"jest": "^30.3.0",
"ts-jest": "^29.4.9",
"typescript": "^6.0.2"
}
}