-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.04 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.04 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
79
{
"name": "the-wall",
"version": "0.3.0",
"description": "AI-powered intelligence surface for meetings, research & thinking",
"main": "dist-electron/main.js",
"scripts": {
"dev": "vite",
"build": "tsc && vite build && tsc -p tsconfig.electron.json --noEmit",
"preview": "vite preview",
"electron:dev": "vite",
"electron:build": "npm run build && electron-builder",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"postinstall": "electron-rebuild -f -w better-sqlite3"
},
"dependencies": {
"@mozilla/readability": "^0.6.0",
"@tanstack/react-virtual": "^3.13.18",
"better-sqlite3": "^11.7.0",
"csv-parse": "^6.1.0",
"dotenv": "^17.2.4",
"events": "^3.3.0",
"fractional-indexing": "^3.2.0",
"graphology": "^0.26.0",
"graphology-types": "^0.24.8",
"jsdom": "^28.1.0",
"mitt": "^3.0.1",
"pdf-parse": "^2.4.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"uuid": "^11.0.5",
"zundo": "^2.3.0",
"zustand": "^5.0.3"
},
"devDependencies": {
"@electron/rebuild": "^4.0.3",
"@types/better-sqlite3": "^7.6.12",
"@types/jsdom": "^27.0.0",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"concurrently": "^9.1.2",
"electron": "^33.3.1",
"electron-builder": "^25.1.8",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.3",
"vite": "^6.0.7",
"vite-plugin-electron": "^0.28.8",
"vite-plugin-electron-renderer": "^0.14.6",
"vitest": "^2.1.8",
"wait-on": "^8.0.3"
},
"build": {
"appId": "com.thewall.app",
"productName": "The Wall",
"files": [
"dist/**/*",
"dist-electron/**/*"
],
"directories": {
"output": "release"
},
"mac": {
"target": "dmg"
},
"win": {
"target": "nsis"
},
"linux": {
"target": "AppImage"
}
}
}