-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1016 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1016 Bytes
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
{
"name": "groundwork",
"version": "0.0.1",
"description": "Architectural grounding for AI coding agents — distilled principle files agents reference during planning.",
"type": "module",
"license": "MIT",
"author": "Kurt Dowswell <kdowswell@gmail.com>",
"engines": {
"node": ">=20"
},
"scripts": {
"validate": "tsx scripts/validate-principles.ts",
"validate:skills": "tsx scripts/validate-skills.ts",
"validate:all": "npm run validate && npm run validate:skills",
"sync:principles": "tsx scripts/sync-skill-principles.ts",
"typecheck": "tsc --noEmit",
"test": "vitest run --passWithNoTests",
"eval": "tsx eval/harness.ts",
"eval:skill": "tsx eval/harness.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.52.0",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"glob": "^11.0.0",
"gray-matter": "^4.0.3"
},
"devDependencies": {
"@types/node": "^22.10.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}