forked from Nedal7707/worktree-proof
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 2.31 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
{
"name": "worktree-proof",
"version": "0.1.0",
"description": "Evidence-backed guardrails for AI coding agents.",
"type": "module",
"main": "src/index.js",
"exports": {
".": "./src/index.js",
"./cli": "./src/cli.js",
"./adapters": "./src/adapters.js",
"./init": "./src/init.js",
"./scope": "./src/scope.js",
"./planner": "./src/planner.js",
"./leases": "./src/leases.js",
"./evidence": "./src/evidence.js",
"./runner": "./src/runner.js",
"./resources": "./src/resources.js",
"./bridge": "./src/bridge.js",
"./tasks": "./src/tasks.js",
"./mcp": "./src/mcp/index.js",
"./tools": "./src/tools.js",
"./protocol": "./src/protocol/index.js",
"./git": "./src/git.js",
"./worktree": "./src/worktree.js",
"./package.json": "./package.json"
},
"engines": {
"node": ">=20"
},
"bin": {
"worktree-proof": "bin/worktree-proof.js",
"worktree-proof-mcp": "bin/worktree-proof-mcp.js"
},
"scripts": {
"test": "node --test",
"lint": "node --check bin/worktree-proof.js && node --check bin/worktree-proof-mcp.js && node --check src/cli.js && node --check src/index.js && node --check src/mcp/framing.js && node --check src/mcp/tools.js && node --check src/mcp/server.js && node --check src/mcp/index.js && node --check src/protocol/constants.js && node --check src/protocol/errors.js && node --check src/protocol/envelope.js && node --check src/protocol/capabilities.js && node --check src/protocol/index.js && node --check src/adapters.js && node --check src/bridge.js && node --check src/evidence.js && node --check src/git.js && node --check src/init.js && node --check src/leases.js && node --check src/planner.js && node --check src/resources.js && node --check src/runner.js && node --check src/scope.js && node --check src/tasks.js && node --check src/text-safety.js && node --check src/tools.js && node --check src/worktree.js",
"check": "npm run lint && npm test"
},
"license": "Apache-2.0",
"files": [
"bin/",
"src/",
"schemas/",
"examples/",
"catalog/",
"recipes/",
"templates/",
"integrations/",
"lessons/",
"skills/",
"docs/",
"site/",
"CHANGELOG.md",
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md",
"GOVERNANCE.md",
"LICENSE",
"NOTICE.md",
"README.md",
"SECURITY.md"
]
}