-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.23 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.23 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
{
"name": "memory-os",
"version": "0.1.0",
"description": "Local memory OS CLI - manage your personal context for AI interactions",
"license": "MIT",
"type": "module",
"main": "dist-electron/main/index.js",
"bin": {
"mem": "./dist/src/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/src/index.js",
"dev:gui": "vite",
"build:gui": "tsc && vite build",
"preview:gui": "vite preview",
"test:core": "tsx --test tests/core/*.test.ts",
"test:smoke": "node tests/smoke-test.mjs"
},
"dependencies": {
"@vitejs/plugin-react": "^5.1.4",
"clsx": "^2.1.1",
"commander": "^13.1.0",
"electron": "^40.6.1",
"inquirer": "^12.3.2",
"lucide-react": "^0.576.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"vite": "^7.3.1",
"vite-plugin-electron": "^0.29.0",
"zod": "^4.3.6",
"zustand": "^5.0.11"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.2.1",
"@types/inquirer": "^9.0.7",
"@types/node": "^22.10.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.4.27",
"postcss": "^8.5.8",
"tailwindcss": "^4.2.1",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
}
}