-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.41 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.41 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
{
"name": "my-mega-memory",
"version": "1.0.0",
"description": "Session data importer and viewer for AI chat sessions",
"main": "dist/index.js",
"bin": {
"my-mega-memory": "dist/cli.js"
},
"scripts": {
"build": "tsc && cp -r src/templates dist/ && cp -r src/public dist/",
"test": "jest",
"test:watch": "jest --watch",
"start": "npm run build && node dist/cli.js serve",
"dev": "ts-node src/cli.ts serve",
"import": "npm run build && node dist/cli.js import",
"push": "npm run build && node dist/cli.js push",
"create-database": "npm run build && node dist/cli.js create-database",
"clean": "rm -rf dist"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"@types/markdown-it": "^14.1.2",
"better-sqlite3": "^12.1.0",
"commander": "^14.0.3",
"diff": "^8.0.3",
"ejs": "^3.1.10",
"express": "^5.1.0",
"express-ejs-layouts": "^2.5.1",
"markdown-it": "^14.1.0",
"ts-node": "^10.9.2",
"zod": "^3.25.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/diff": "^7.0.2",
"@types/ejs": "^3.1.5",
"@types/express": "^5.0.2",
"@types/express-ejs-layouts": "^2.5.4",
"@types/jest": "^30.0.0",
"@types/node": "^22.15.18",
"jest": "^30.2.0",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
},
"keywords": [
"ai",
"sessions",
"chat",
"import"
],
"license": "MIT"
}