-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.4 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.4 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
{
"name": "@ansvar/security-program-mcp",
"version": "1.0.0",
"description": "Security program planning methodologies — implementation playbooks, RACI templates, WBS patterns, milestone frameworks, governance structures. Part of the Ansvar MCP Network (ansvar.ai/mcp)",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/http-server.js",
"dev": "tsx src/http-server.ts",
"build:db": "tsx scripts/build-db.ts",
"test": "node --import tsx --test src/tests/**/*.test.ts",
"typecheck": "tsc --noEmit",
"ingest:fetch": "tsx scripts/ingest-fetch.ts",
"ingest:diff": "tsx scripts/ingest-diff.ts",
"coverage:update": "tsx scripts/update-coverage.ts",
"freshness:check": "tsx scripts/check-freshness.ts",
"coverage:verify": "tsx scripts/verify-coverage.ts",
"ingest:full": "npm run ingest:fetch && npm run build:db && npm run coverage:update",
"lint": "tsc --noEmit",
"test:contract": "echo \"No contract tests yet\" && exit 0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"better-sqlite3": "^12.8.0",
"express": "^5.2.1"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/express": "^5.0.0",
"@types/node": "^25.5.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
},
"author": "Ansvar Systems <hello@ansvar.eu> (https://ansvar.eu)",
"license": "Apache-2.0"
}