-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.13 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
{
"name": "securecontext",
"version": "0.50.1",
"description": "Persistent memory, delivery programs, and a cryptographic security layer for Claude Code agents — 100% local (Postgres + Ollama), MIT.",
"keywords": [
"claude-code",
"mcp",
"agent-memory",
"persistent-memory",
"llm-memory",
"audit-trail",
"hmac",
"agent-security",
"multi-agent",
"knowledge-graph",
"temporal-memory",
"local-first"
],
"license": "MIT",
"type": "module",
"main": "dist/server.js",
"files": [
"dist/",
"hooks/",
"docker/",
"init.mjs",
"install.mjs",
"bootstrap.sh",
"bootstrap.ps1",
"README.md",
"ARCHITECTURE.md",
"CHANGELOG.md",
"LICENSE",
"llms.txt"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"lint": "eslint src",
"test": "vitest run",
"check:env": "node scripts/check-env-pinning.mjs",
"check:env:test": "node scripts/check-env-pinning.test.mjs",
"lint:test": "node scripts/test-lint-catches-floating-promise.mjs",
"lint:skills": "node scripts/lint-skills.mjs",
"lint:skills:strict": "node scripts/lint-skills.mjs --fail-on-error",
"prepublishOnly": "npm run build && npm test"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@fastify/cors": "^11.2.0",
"@modelcontextprotocol/sdk": "^1.0.0",
"@types/pg": "^8.20.0",
"acorn": "^8.16.0",
"acorn-walk": "^8.3.5",
"fastify": "^5.8.4",
"graphology": "^0.26.0",
"graphology-communities-louvain": "^2.0.2",
"pdfjs-dist": "^4.10.38",
"pg": "^8.20.0",
"typescript": "^5.3.3"
},
"devDependencies": {
"@types/node": "^22.13.0",
"@typescript-eslint/eslint-plugin": "^8.58.2",
"@typescript-eslint/parser": "^8.58.2",
"eslint": "^9.39.4",
"typescript-eslint": "^8.58.2",
"vitest": "^4.1.0"
},
"bin": {
"zc-ctx": "./init.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iampantherr/SecureContext.git"
},
"homepage": "https://github.com/iampantherr/SecureContext#readme",
"bugs": {
"url": "https://github.com/iampantherr/SecureContext/issues"
}
}