-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.58 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 3.58 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@pcircle/memesh",
"version": "4.6.0",
"description": "MeMesh — agentic memory for coding agents. Captured from the agent's real work via hooks, recalled when it acts. One SQLite file, zero cloud required.",
"main": "dist/index.js",
"type": "module",
"bin": {
"memesh": "dist/transports/cli/cli.js",
"memesh-mcp": "dist/mcp/server.js",
"memesh-http": "dist/transports/http/server.js"
},
"files": [
"dist/",
"dashboard/dist/",
".mcp.json",
"hooks/hooks.json",
"scripts/hooks/",
"scripts/upgrade-plugin.sh",
"skills/",
".claude-plugin/",
"README.md",
"LICENSE",
"llms-install.md",
"AGENTS.md"
],
"scripts": {
"build": "node scripts/check-schema-drift.mjs && tsc && node scripts/generate-hook-core.mjs && node scripts/copy-cli-assets.mjs && node scripts/set-executable-bits.mjs && node scripts/generate-skills-manifest.mjs && npm run build:dashboard && node scripts/smoke-test.mjs",
"build:dashboard": "node scripts/build-dashboard.mjs",
"test": "vitest",
"test:e2e-dashboard": "node scripts/dashboard-e2e-smoke.mjs",
"test:packaged": "node scripts/smoke-packed-artifact.mjs",
"audit:prod": "node scripts/check-consumer-audit.mjs",
"verify:release": "npm run lint && npm run typecheck && node scripts/check-version-coherence.mjs && node scripts/check-generated-mirror.mjs && node scripts/check-doc-claims.mjs && node scripts/audit/verification-audit.mjs && npm run audit:prod",
"prepublishOnly": "npm run build && npm run verify:release && npm run test:isolated && npm run test:packaged",
"typecheck": "tsc -p tsconfig.check.json && tsc -p tsconfig.check-dashboard.json",
"lint": "eslint src/ scripts/ tests/ dashboard/src/ --max-warnings 0",
"lint:fix": "eslint src/ scripts/ tests/ dashboard/src/ --fix",
"start": "node dist/mcp/server.js",
"bench:longmemeval": "node benchmarks/longmemeval/run.mjs --mode A --dataset /tmp/longmemeval_s.json",
"test:isolated": "node scripts/run-tests-isolated.mjs",
"test:coverage": "node scripts/run-tests-isolated.mjs --coverage"
},
"author": "PCIRCLE-AI",
"license": "MIT",
"homepage": "https://github.com/PCIRCLE-AI/memesh",
"bugs": {
"url": "https://github.com/PCIRCLE-AI/memesh/issues"
},
"keywords": [
"claude-code",
"mcp",
"model-context-protocol",
"memory",
"sqlite",
"knowledge-graph",
"agentic-memory",
"agent-memory",
"ai-agents",
"coding-agents"
],
"repository": {
"type": "git",
"url": "git+https://github.com/PCIRCLE-AI/memesh.git"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.30.0",
"commander": "^14.0.3",
"express": "^5.2.1",
"express-rate-limit": "8.5.1",
"sqlite-vec": "^0.1.9",
"zod": "4.4.3"
},
"overrides": {
"@hono/node-server": "^2.0.12",
"@protobufjs/utf8": "^1.1.2",
"adm-zip": "^0.6.0",
"body-parser": "^2.3.0",
"brace-expansion": "^5.0.9",
"fast-uri": "^3.1.4",
"hono": "^4.12.32",
"postcss": "^8.5.25",
"protobufjs": "^7.6.5",
"qs": "^6.15.3",
"sharp": "^0.35.3",
"ws": "^8.21.1",
"vite": "7.3.6"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@preact/preset-vite": "^2.10.5",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/preact": "^3.2.4",
"@types/express": "^5.0.6",
"@types/node": "25.6.2",
"@vitest/coverage-v8": "4.1.5",
"eslint": "^10.3.0",
"happy-dom": "^20.9.0",
"playwright": "^1.59.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.59.2",
"vitest": "4.1.5"
},
"engines": {
"node": ">=22.13.0"
}
}