-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.75 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.75 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "martin-loop",
"private": false,
"version": "0.2.7",
"type": "module",
"description": "Open-source control plane for AI coding agents: budget caps, verifier gates, rollback evidence, and audit trails.",
"packageManager": "pnpm@10.33.0",
"keywords": [
"mcp",
"model-context-protocol",
"ai-coding-agents",
"agent-runtime",
"agent-governance",
"control-plane",
"budget-enforcement",
"verifier-gates",
"audit-trail",
"claude-code",
"codex",
"llmops",
"cli"
],
"author": "MartinLoop contributors",
"license": "Apache-2.0",
"homepage": "https://martinloop.com/",
"repository": {
"type": "git",
"url": "https://github.com/Keesan12/martin-loop.git"
},
"bugs": {
"url": "https://github.com/Keesan12/martin-loop/issues"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"martin-loop": "./dist/bin/martin-loop.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"README.md",
"CODE_OF_CONDUCT.md",
"demo/seeded-workspace"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "pnpm --filter @martin/cli build && pnpm --filter @martinloop/mcp build && node ./scripts/build-public-facade.mjs",
"prepack": "pnpm build && node ./scripts/root-release-guard.mjs --pack",
"test": "pnpm -r test && node --test scripts/tests/*.mjs",
"lint": "pnpm -r lint",
"oss:validate": "node ./scripts/oss-boundary.mjs",
"public:copy-scan": "node ./scripts/public-copy-scan.mjs",
"public:git-surface": "node ./scripts/public-git-surface-guard.mjs",
"public:smoke": "node ./scripts/public-facade-smoke.mjs",
"mcp:pack:smoke": "pnpm --filter @martinloop/mcp smoke:pack",
"mcp:published:smoke": "pnpm --filter @martinloop/mcp smoke:published",
"mcp:published:smoke:pack": "pnpm --filter @martinloop/mcp smoke:published:pack",
"release:validate-local": "node ./scripts/rc-validation.mjs",
"release:validate-local:install": "node ./scripts/rc-validation.mjs --install",
"release:root:guard": "node ./scripts/root-release-guard.mjs --pack",
"run:cli": "pnpm --filter @martin/cli dev"
},
"devDependencies": {
"@types/node": "^22.13.10",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"vitest": "^3.0.8"
},
"dependencies": {
"@open-policy-agent/opa-wasm": "^1.10.0",
"@opentelemetry/api-logs": "^0.214.0",
"@opentelemetry/exporter-logs-otlp-http": "^0.214.0",
"@opentelemetry/resources": "^2.6.1",
"@opentelemetry/sdk-logs": "^0.214.0",
"@opentelemetry/semantic-conventions": "^1.38.0",
"ts-morph": "^21.0.0"
},
"workspaces": [
"packages/*"
]
}