-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.6 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.6 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
{
"name": "oddkit",
"version": "0.26.0",
"description": "Agent-first CLI for ODD-governed repos. Epistemic terrain rendering with portable baseline.",
"type": "module",
"bin": {
"oddkit": "./bin/oddkit",
"oddkit-mcp": "./bin/oddkit-mcp"
},
"main": "src/cli.js",
"repository": {
"type": "git",
"url": "https://github.com/klappy/oddkit.git"
},
"scripts": {
"prepare": "git config core.hooksPath .githooks || true",
"test": "bash tests/smoke.sh",
"test:smoke": "bash tests/smoke.sh",
"test:mcp": "bash tests/mcp-smoke.sh",
"test:tooljson": "bash tests/tooljson.sh",
"test:antifragile": "bash tests/orchestrate-antifragile.sh",
"test:catalog": "bash tests/orchestrate-catalog.test.sh",
"test:preflight": "bash tests/orchestrate-preflight.test.sh",
"test:parity": "bash tests/parity.test.sh",
"test:policy": "bash tests/policy-tools.test.sh",
"test:production": "bash tests/cloudflare-production.test.sh",
"test:deploy": "bash tests/cloudflare-production.test.sh",
"mcp": "node src/mcp/server.js",
"librarian": "node bin/oddkit librarian --query",
"validate": "node bin/oddkit validate --message",
"index": "node bin/oddkit index",
"promote": "bash scripts/promote.sh",
"promote:dry": "bash scripts/promote.sh --dry-run"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"commander": "^12.0.0",
"fast-glob": "^3.3.2",
"gray-matter": "^4.0.3"
},
"keywords": [
"odd",
"agents",
"cli",
"documentation",
"governance",
"mcp",
"tools"
],
"author": "klappy",
"license": "MIT"
}