-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.32 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.32 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
{
"name": "aidd",
"version": "0.15.0",
"private": true,
"author": "NomadicDaddy",
"bugs": {
"url": "https://github.com/NomadicDaddy/aidd/issues"
},
"description": "AI Development Driver",
"main": "./aidd.sh",
"devDependencies": {
"prettier": "3.8.3",
"prettier-plugin-organize-attributes": "1.0.0",
"prettier-plugin-sort-json": "4.2.0",
"prettier-plugin-tailwindcss": "0.8.0"
},
"engines": {
"bun": ">=1.0.0",
"node": ">=20.0.0"
},
"homepage": "https://github.com/NomadicDaddy/aidd#readme",
"keywords": [],
"license": "MIT",
"packageManager": "bun@1.3.11",
"repository": {
"type": "git",
"url": "https://github.com/NomadicDaddy/aidd.git"
},
"scripts": {
"benchmark": "node ./tools/run-benchmark.mjs --manifest ./benchmarks/manifest.json",
"benchmark:dry-run": "node ./tools/run-benchmark.mjs --manifest ./benchmarks/manifest.json --dry-run",
"benchmark:report": "node ./tools/run-benchmark.mjs --manifest ./benchmarks/manifest.json --report-only",
"benchmark:regrade": "node ./tools/run-benchmark.mjs --manifest ./benchmarks/manifest.json --regrade",
"start": "bash ./aidd.sh",
"format": "bun update --latest && bunx prettier --write .",
"format:check": "bun update --latest && bunx prettier --check .",
"lint": "bash ./lint.sh",
"smoke:qc": "bun run lint && bun run format"
},
"type": "module"
}