-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "sparda-mcp",
"version": "0.71.3",
"mcpName": "io.github.zyx77550/sparda-mcp",
"description": "AI writes. SPARDA proves. A deterministic, offline gate that catches when an AI edit removes a guard, exposes a route, or breaks an invariant \u2014 no API key, right in the agent edit loop.",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/zyx77550/sparda.git"
},
"homepage": "https://github.com/zyx77550/sparda#readme",
"bugs": {
"url": "https://github.com/zyx77550/sparda/issues"
},
"bin": {
"sparda": "src/index.js"
},
"scripts": {
"test": "vitest run",
"prepublishOnly": "node scripts/release-gate.mjs",
"corpus": "node scripts/corpus-oracle.mjs",
"corpus:update": "node scripts/corpus-oracle.mjs --update",
"test:router": "node tests/router-selftest.cjs",
"test:all": "vitest run && node tests/router-selftest.cjs",
"coverage": "vitest run --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"**/*.{js,cjs,mjs}\"",
"format:check": "prettier --check \"**/*.{js,cjs,mjs}\"",
"bench:check": "node bench/check-readme.mjs",
"mutation": "node tests/mutation/run.mjs",
"wedge": "node bench/wedge.mjs",
"release:check": "node scripts/release-gate.mjs",
"publish:vscode": "cd extensions/vscode && npx --yes @vscode/vsce@3.9.2 publish"
},
"files": [
"src",
"templates",
"!templates/*.bak",
"demo-app",
"README.md",
"LICENSE",
"SKILL.md"
],
"engines": {
"node": ">=18"
},
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"claude",
"claude-code",
"ai-code-review",
"code-review",
"guardrails",
"static-analysis",
"security",
"authorization",
"bola",
"ai-agents",
"trust-layer"
],
"author": "Residual Labs (residual-labs.fr)",
"license": "BUSL-1.1",
"dependencies": {
"@babel/parser": "8.0.4",
"@babel/traverse": "8.0.4",
"@clack/prompts": "1.7.0",
"@modelcontextprotocol/sdk": "1.29.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@vitest/coverage-v8": "^4.1.10",
"eslint": "^10.7.0",
"eslint-config-prettier": "^10.1.8",
"express": "^5.2.1",
"globals": "^17.7.0",
"prettier": "^3.8.4",
"vitest": "^4.1.10"
}
}