-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.52 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.52 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
{
"name": "gitmem-mcp",
"version": "1.4.3",
"mcpName": "io.github.gitmem-dev/gitmem",
"description": "Persistent learning memory for AI coding agents. Memory that compounds.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"gitmem": "bin/gitmem.js",
"gitmem-mcp": "bin/gitmem.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "vitest run",
"test:unit": "vitest run --config vitest.config.ts",
"test:integration": "vitest run --config vitest.integration.config.ts",
"test:perf": "vitest bench --config vitest.perf.config.ts",
"test:e2e": "vitest run --config vitest.e2e.config.ts",
"test:smoke": "npm run test:smoke:free && npm run test:smoke:pro",
"test:smoke:free": "GITMEM_TIER=free vitest run --config vitest.smoke.config.ts tests/smoke/smoke-free.test.ts",
"test:smoke:pro": "vitest run --config vitest.smoke.config.ts tests/smoke/smoke-pro.test.ts",
"test:all": "npm run test:unit && npm run test:smoke && npm run test:integration && npm run test:perf && npm run test:e2e",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"prepublishOnly": "tsc",
"release-status": "bash scripts/release-status.sh"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"uuid": "^9.0.0",
"zod": "^3.22.0"
},
"devDependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.38",
"@testcontainers/postgresql": "^10.6.0",
"@types/node": "^20.0.0",
"@types/pg": "^8.10.0",
"@types/uuid": "^9.0.0",
"pg": "^8.11.0",
"typescript": "^5.0.0",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"!dist/**/*.test.*",
"bin",
"hooks",
"!hooks/tests",
"schema",
"CLAUDE.md.template",
"cursorrules.template",
"copilot-instructions.template",
"windsurfrules.template",
"README.md",
"CHANGELOG.md"
],
"keywords": [
"mcp",
"mcp-server",
"gitmem",
"claude",
"claude-code",
"cursor",
"vscode",
"copilot",
"windsurf",
"openclaw",
"ai-memory",
"ai-agent",
"ai-coding",
"institutional-memory",
"scars",
"semantic-search"
],
"author": "nTEG Labs",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gitmem-dev/gitmem.git"
},
"homepage": "https://gitmem.ai",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}