forked from paralleldrive/aidd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.66 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.66 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
96
97
98
99
{
"name": "aidd",
"version": "2.5.0",
"description": "The standard framework for AI Driven Development.",
"type": "module",
"sideEffects": false,
"bin": {
"aidd": "bin/aidd.js"
},
"scripts": {
"release": "node release.js",
"lint": "eslint --fix && echo 'Lint fix complete.'",
"format": "prettier --write . && echo 'Format complete.'",
"format:check": "prettier --check . && echo 'Format check complete.'",
"test": "vitest run && echo 'Test complete.' && npm run -s lint && npm run -s typecheck",
"test:unit": "vitest run --exclude '**/*-e2e.test.js' && echo 'Unit tests complete.' && npm run -s lint && npm run -s typecheck",
"test:e2e": "vitest run **/*-e2e.test.js && echo 'E2E tests complete.'",
"typecheck": "tsc --noEmit && echo 'Type check complete.'",
"check-status": "[ -n \"$(git status --porcelain)\" ] && { echo '❌ Uncommitted changes'; exit 1; } || echo '✅ Git status is clean.'",
"prepare": "husky",
"toc": "doctoc README.md"
},
"exports": {
"./utils": {
"types": "./utils/index.d.ts",
"default": "./utils/index.js"
},
"./server": {
"types": "./src/server/index.d.ts",
"default": "./src/server/index.js"
}
},
"files": [
"ai/**/*",
"bin/**/*",
"docs/**/*",
"lib/**/*",
"src/**/*",
"utils/**/*",
"!**/*.test.js",
"!**/*-e2e.test.js",
"README.md",
"LICENSE",
"CHANGELOG.md",
"CONTRIBUTING.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/paralleldrive/aidd.git"
},
"keywords": [
"ai-driven-development",
"aidd",
"sudolang",
"ai-agents",
"cli-tool",
"development-tools",
"prompt-engineering",
"ai-orchestration"
],
"author": "ParallelDrive",
"license": "MIT",
"bugs": {
"url": "https://github.com/paralleldrive/aidd/issues"
},
"homepage": "https://github.com/paralleldrive/aidd#readme",
"dependencies": {
"@paralleldrive/cuid2": "^3.1.0",
"@sinclair/typebox": "^0.34.41",
"chalk": "^4.1.2",
"commander": "^11.1.0",
"error-causes": "^3.0.2",
"fs-extra": "^11.1.1",
"gray-matter": "^4.0.3",
"js-sha3": "^0.9.3"
},
"peerDependencies": {
"better-auth": "^1.4.5"
},
"peerDependenciesMeta": {
"better-auth": {
"optional": true
}
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@vitest/coverage-v8": "^3.2.4",
"doctoc": "^2.2.1",
"eslint": "^9",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"husky": "^9.1.7",
"prettier": "^3.6.2",
"release-it": "^19.0.5",
"riteway": "^9.0.0-rc.1",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
}
}