forked from toshtag/code-pact
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.13 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
{
"name": "code-pact",
"version": "1.2.0",
"description": "Design Control Plane for AI Coding Agents",
"type": "module",
"license": "MIT",
"author": "Pocket (@toshtag)",
"homepage": "https://github.com/toshtag/code-pact#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/toshtag/code-pact.git"
},
"bugs": {
"url": "https://github.com/toshtag/code-pact/issues"
},
"keywords": [
"ai",
"agent",
"cli",
"claude",
"codex",
"design",
"spec-driven"
],
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@10.33.2",
"bin": {
"code-pact": "dist/cli.js"
},
"files": [
"dist",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"prepublishOnly": "node scripts/assert-package-metadata.mjs"
},
"dependencies": {
"yaml": "^2.9.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^24.0.0",
"tsup": "^8.5.1",
"typescript": "^6.0.3",
"vite": "^6.4.2",
"vitest": "^4.1.6"
}
}