-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.98 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.98 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
{
"name": "code-session-memory",
"version": "0.18.0",
"description": "Automatically index OpenCode, Claude Code, Cursor, VS Code, Codex, and Gemini CLI sessions into a shared sqlite-vec vector database for semantic search across your AI coding history",
"type": "commonjs",
"main": "dist/src/indexer.js",
"types": "dist/src/indexer.d.ts",
"bin": {
"code-session-memory": "dist/src/cli.js"
},
"files": [
"dist/",
"plugin/",
"skill/"
],
"scripts": {
"build": "tsc && npm run build:web && chmod 755 dist/src/cli.js dist/mcp/index.js dist/src/indexer-cli-vscode.js dist/src/indexer-cli-codex.js dist/src/indexer-cli-gemini.js",
"build:web": "cd web && npm install && npm run build",
"build:watch": "tsc --watch",
"dev:web": "cd web && npm run dev",
"start:mcp": "node dist/mcp/index.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"generate-fixtures": "tsx scripts/generate-fixtures.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"opencode",
"claude-code",
"cursor",
"vscode",
"codex",
"gemini-cli",
"mcp",
"sqlite-vec",
"vector",
"memory",
"ai",
"sessions"
],
"author": "Denis Jannot <djannot@gmail.com>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@clack/prompts": "^1.0.1",
"@modelcontextprotocol/sdk": "^1.12.1",
"@opencode-ai/plugin": "^1.2.8",
"@opencode-ai/sdk": "^1.2.8",
"better-sqlite3": "^11.9.1",
"express": "^5.2.1",
"openai": "^4.20.1",
"pg": "^8.13.0",
"smol-toml": "^1.6.0",
"sqlite-vec": "0.1.7-alpha.2",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.12",
"@types/express": "^5.0.6",
"@types/pg": "^8.11.0",
"@types/node": "^20.10.0",
"@vitest/coverage-v8": "^2.0.0",
"tsx": "^4.19.2",
"typescript": "^5.3.2",
"vitest": "^2.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}