-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.38 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.38 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
{
"name": "local-course-player",
"version": "1.0.0",
"description": "Local-first course video player for folder-based libraries",
"main": "electron/main.js",
"scripts": {
"dev": "concurrently -k \"npm:dev:renderer\" \"npm:dev:electron\"",
"dev:renderer": "vite",
"dev:electron": "wait-on tcp:5173 && cross-env VITE_DEV_SERVER_URL=http://127.0.0.1:5173 electron .",
"build": "vite build",
"preview": "vite preview",
"dist": "npm run build && electron-builder"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"build": {
"appId": "com.localcourseplayer.app",
"productName": "Local Course Player",
"files": [
"dist/**/*",
"electron/**/*",
"package.json"
],
"directories": {
"buildResources": "public"
},
"win": {
"target": "nsis"
}
},
"dependencies": {
"clsx": "^2.1.1",
"electron-store": "^11.0.2",
"ffmpeg-static": "^5.3.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"zustand": "^5.0.12"
},
"devDependencies": {
"@types/node": "^25.5.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"electron": "^41.1.1",
"electron-builder": "^26.8.1",
"typescript": "^6.0.2",
"vite": "^8.0.3",
"wait-on": "^9.0.4"
}
}