-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 865 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 865 Bytes
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
{
"name": "devmem-cli",
"version": "1.0.0",
"description": "Cross-project memory for AI coding assistants",
"main": "dist/index.js",
"bin": {
"devmem": "dist/index.js",
"dm": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc && node dist/index.js",
"watch": "tsc --watch"
},
"keywords": [
"ai",
"memory",
"code-search",
"semantic-search",
"cursor",
"claude",
"copilot",
"cli"
],
"author": "Brian Mwirigi",
"license": "MIT",
"dependencies": {
"better-sqlite3": "^9.2.2",
"chalk": "^4.1.2",
"cli-table3": "^0.6.3",
"commander": "^11.1.0",
"fast-glob": "^3.3.2",
"ignore": "^5.3.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.8",
"@types/node": "^20.10.6",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=16.0.0"
}
}