-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.3 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.3 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
{
"name": "mymem",
"productName": "myMem",
"version": "1.3.1",
"description": "Mac-native AI notes app — local-first notes with chat over your own knowledge base",
"type": "module",
"main": "out/main/index.js",
"author": "John Westerlund",
"license": "MIT",
"engines": {
"node": ">=22.19.0"
},
"scripts": {
"dev": "electron-vite dev",
"build": "electron-vite build",
"preview": "electron-vite preview",
"typecheck": "tsc -p tsconfig.node.json --noEmit && tsc -p tsconfig.web.json --noEmit && tsc -p tsconfig.test.json --noEmit",
"test": "vitest run",
"smoke": "npm run build && MYMEM_SMOKE=1 electron .",
"e2e": "npm run build && playwright test",
"build:cli": "cd cli && go build -o mym .",
"icon": "bash scripts/make-icon.sh",
"install-skill": "node scripts/install-skill.mjs",
"dist": "npm run build && electron-builder --mac",
"postinstall": "electron-builder install-app-deps"
},
"dependencies": {
"@earendil-works/pi-ai": "0.79.1",
"@huggingface/transformers": "4.2.0",
"better-sqlite3": "12.10.0",
"sqlite-vec": "0.1.9",
"uuidv7": "^1.2.1"
},
"devDependencies": {
"@tailwindcss/vite": "^4.3.0",
"@tiptap/core": "3.26.0",
"@tiptap/extension-code-block-lowlight": "3.26.0",
"@tiptap/extension-image": "^3.26.0",
"@tiptap/extension-placeholder": "3.26.0",
"@tiptap/extension-table": "3.26.0",
"@tiptap/extension-task-item": "3.26.0",
"@tiptap/extension-task-list": "3.26.0",
"@tiptap/extension-unique-id": "3.26.0",
"@tiptap/extensions": "3.26.0",
"@tiptap/markdown": "3.26.0",
"@tiptap/pm": "3.26.0",
"@tiptap/react": "3.26.0",
"@tiptap/starter-kit": "3.26.0",
"@tiptap/suggestion": "3.26.0",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^24.0.0",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@vitejs/plugin-react": "^5.2.0",
"diff": "^8.0.4",
"electron": "41.7.2",
"electron-builder": "^26.0.12",
"electron-vite": "^5.0.0",
"happy-dom": "20.10.2",
"lowlight": "3.3.0",
"playwright": "^1.60.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-markdown": "^10.1.0",
"tailwindcss": "^4.3.0",
"typescript": "^5.9.0",
"vite": "^7.1.0",
"vitest": "^4.1.8",
"zustand": "^5.0.14"
}
}