-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.82 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.82 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
{
"name": "@akashkobal/contextmemory",
"version": "0.5.1",
"description": "Persistent AI coding context memory for developers and teams. Tracks architecture decisions and restores context across AI coding sessions.",
"keywords": [
"contextmemory",
"ai",
"coding",
"context",
"memory",
"developer-tools",
"cli",
"mcp",
"cursor",
"claude",
"copilot"
],
"license": "MIT",
"author": "Akash Kobal",
"type": "commonjs",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"contextmemory": "./dist/index.js",
"contextmemory-mcp": "./dist/mcp-server.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "ts-node src/index.ts",
"start": "node dist/index.js",
"mcp": "node dist/mcp-server.js",
"test": "jest",
"clean": "rimraf dist",
"rebuild": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AkashKobal/contextmemory.git"
},
"homepage": "https://github.com/AkashKobal/contextmemory",
"bugs": {
"url": "https://github.com/AkashKobal/contextmemory/issues"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"chalk": "^4.1.2",
"chokidar": "^4.0.0",
"clipboardy": "^2.3.0",
"commander": "^12.1.0",
"inquirer": "^8.2.6",
"simple-git": "^3.27.0",
"uuid": "^10.0.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/chokidar": "^2.1.3",
"@types/inquirer": "^9.0.7",
"@types/jest": "^30.0.0",
"@types/node": "^22.0.0",
"@types/uuid": "^10.0.0",
"jest": "^30.2.0",
"rimraf": "^5.0.7",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.6.0"
}
}