-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.42 KB
/
Copy pathpackage.json
File metadata and controls
118 lines (118 loc) · 3.42 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"author": "ParallelDrive",
"engines": {
"node": ">=18"
},
"bin": {
"aidd": "bin/aidd.js"
},
"bugs": {
"url": "https://github.com/paralleldrive/aidd/issues"
},
"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",
"js-yaml": "^4.1.1",
"tsmetrics-core": "^1.4.1",
"typescript": "^5.9.3"
},
"description": "The standard framework for AI Driven Development.",
"devDependencies": {
"@biomejs/biome": "2.3.12",
"@types/fs-extra": "^11.0.4",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.3.3",
"@vitest/coverage-v8": "^3.2.4",
"doctoc": "^2.2.1",
"husky": "^9.1.7",
"release-it": "^19.0.5",
"riteway": "^9.2.0",
"vitest": "^3.2.4"
},
"exports": {
"./agent": {
"types": "./lib/agent-cli/runner.d.ts",
"default": "./lib/agent-cli/runner.js"
},
"./agent-config": {
"types": "./lib/agent-cli/config.d.ts",
"default": "./lib/agent-cli/config.js"
},
"./server": {
"types": "./src/server/index.d.ts",
"default": "./src/server/index.js"
},
"./utils": {
"types": "./utils/index.d.ts",
"default": "./utils/index.js"
}
},
"files": [
"ai/**/*",
"bin/**/*",
"docs/**/*",
"lib/**/*",
"src/**/*",
"utils/**/*",
"!**/*.test.js",
"!**/*-e2e.test.js",
"README.md",
"LICENSE",
"CHANGELOG.md",
"CONTRIBUTING.md"
],
"homepage": "https://github.com/paralleldrive/aidd#readme",
"keywords": [
"ai-driven-development",
"aidd",
"sudolang",
"ai-agents",
"cli-tool",
"development-tools",
"prompt-engineering",
"ai-orchestration"
],
"license": "MIT",
"name": "aidd",
"peerDependencies": {
"better-auth": "^1.4.5"
},
"peerDependenciesMeta": {
"better-auth": {
"optional": true
}
},
"overrides": {
"tsmetrics-core": {
"typescript": "$typescript"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/paralleldrive/aidd.git"
},
"scripts": {
"build:validate-skill": "bun build --compile ai/skills/aidd-upskill/scripts/validate-skill.js --outfile ai/skills/aidd-upskill/scripts/validate-skill",
"check-status": "[ -n \"$(git status --porcelain)\" ] && { echo '❌ Uncommitted changes'; exit 1; } || echo '✅ Git status is clean.'",
"format": "npx @biomejs/biome format --write . && echo 'Format complete.'",
"format:check": "npx @biomejs/biome check && echo 'Check complete.'",
"lint": "npx @biomejs/biome check --write && echo 'Lint fix complete.'",
"prepare": "husky",
"release": "node release.js",
"test": "vitest run && echo 'Test complete.' && npm run -s lint && npm run -s typecheck",
"test:ai-eval": "bash -c 'shopt -s globstar; for f in ai-evals/**/*-test.sudo; do riteway ai \"$f\" --runs 1 --threshold 75 --timeout 600000 --agent claude --color --save-responses || exit 1; done'",
"test:e2e": "vitest run **/*-e2e.test.js && echo 'E2E tests complete.'",
"test:unit": "vitest run --exclude '**/*-e2e.test.js' && echo 'Unit tests complete.' && npm run -s lint && npm run -s typecheck",
"toc": "doctoc README.md",
"typecheck": "tsc --noEmit && echo 'Type check complete.'"
},
"sideEffects": false,
"type": "module",
"version": "3.1.0"
}