-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 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
{
"name": "openfall",
"version": "0.1.0",
"private": true,
"description": "OpenFall — an autosaving digital journal & odd-ball file examiner.",
"author": "OpenFall contributors",
"license": "MIT",
"main": "dist-electron/main.js",
"scripts": {
"dev": "vite",
"electron:compile": "tsc -p electron/tsconfig.json",
"dev:electron": "concurrently -k -n vite,electron \"vite\" \"wait-on http://localhost:5173 && npm run electron:compile && cross-env VITE_DEV_SERVER_URL=http://localhost:5173 electron .\"",
"build:web": "vite build",
"build:portable": "cross-env BUILD_TARGET=singlefile vite build --outDir dist-portable",
"build:electron": "npm run electron:compile && npm run build:web",
"package:win": "npm run build:electron && electron-builder --win --publish never",
"package:linux": "npm run build:electron && electron-builder --linux --publish never",
"package:all": "npm run build:electron && electron-builder --win --linux --publish never",
"typecheck": "tsc --noEmit -p tsconfig.json && tsc --noEmit -p electron/tsconfig.json",
"test": "vitest run",
"test:watch": "vitest",
"preview": "vite preview"
},
"overrides": {
"vite": "$vite"
},
"dependencies": {
"@fontsource/ibm-plex-mono": "^5.1.0",
"@fontsource/ibm-plex-sans": "^5.1.0",
"@fontsource/newsreader": "^5.1.0",
"lucide-react": "^0.468.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"zustand": "^5.0.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^22.10.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"concurrently": "^9.1.0",
"cross-env": "^7.0.3",
"electron": "^33.2.1",
"electron-builder": "^25.1.8",
"jsdom": "^25.0.1",
"playwright": "^1.61.1",
"typescript": "^5.6.3",
"vite": "^6.0.3",
"vite-plugin-singlefile": "^2.1.0",
"vitest": "^2.1.8",
"wait-on": "^8.0.1"
}
}