-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.32 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.32 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
{
"name": "finact",
"productName": "Finact",
"version": "0.4.0",
"author": "pikapower9080",
"description": "A Jellyfin desktop client for music",
"type": "module",
"main": "app/main.js",
"scripts": {
"dev": "vite --host --port 3000",
"dev:electron": "bun run build && NODE_ENV=dev electron app/main.js",
"build": "vite build --base=./",
"build:electron": "vite build --base=./ --outDir build/dist && electron-builder",
"build:electron:all": "vite build --base=./ --outDir build/dist && CSC_IDENTITY_AUTO_DISCOVERY=false electron-builder --windows --linux --x64 && CSC_IDENTITY_AUTO_DISCOVERY=false electron-builder --mac --arm64",
"lint": "eslint .",
"preview": "vite preview",
"format": "prettier --write .",
"generate-client": "@hey-api/openapi-ts -i https://demo.jellyfin.org --output src/Client"
},
"dependencies": {
"@pikapower9080/easy-storage": "^1.1.1",
"@reduxjs/toolkit": "^2.11.2",
"@szhsin/react-menu": "^4.5.1",
"butterchurn": "^2.6.7",
"butterchurn-presets": "^2.4.7",
"copy-to-clipboard": "^3.3.3",
"electron-store": "^11.0.2",
"express": "^5.2.1",
"express-ws": "^5.0.2",
"fast-average-color": "^9.5.2",
"localforage": "^1.10.0",
"material-icons": "^1.13.14",
"react": "^19.2.4",
"react-blurhash": "^0.3.0",
"react-dom": "^19.2.4",
"react-redux": "^9.2.0",
"react-router": "^7.14.0",
"react-scrubber": "^2.1.0",
"react-window": "^2.2.7",
"redux": "^5.0.1",
"rsuite": "^6.1.2"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@hey-api/openapi-ts": "0.95.0",
"@types/express": "^5.0.6",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"electron": "^41.1.1",
"electron-builder": "^26.8.1",
"eslint": "^10.2.0",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.4.0",
"prettier": "^3.8.1",
"vite": "^8.0.3"
},
"build": {
"appId": "dev.pikarocks.finact",
"artifactName": "${productName}-${version}-${os}-${arch}.${ext}",
"mac": {
"category": "public.app-category.music",
"target": [
"dmg"
]
},
"linux": {
"target": [
"appimage"
]
},
"files": [
"app/*",
"build/dist/**/*"
]
}
}