-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
131 lines (131 loc) · 4.55 KB
/
Copy pathpackage.json
File metadata and controls
131 lines (131 loc) · 4.55 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "mediaplayerx",
"description": "MediaPlayerX desktop media library manager built with Electron and React.",
"author": "MediaPlayerX Contributors",
"private": true,
"version": "0.8.0",
"type": "module",
"main": "dist-electron/main.cjs",
"scripts": {
"dev": "vite",
"dev:desktop": "node scripts/electron-dev.mjs",
"build": "tsc -b && vite build",
"build:watch": "tsc -b && vite build --watch",
"build:analyze": "node scripts/build-analyze.mjs",
"build:electron": "node scripts/build-electron.mjs",
"desktop:bundle": "npm run build && npm run build:electron",
"desktop:pack": "npm run desktop:pack:unsigned",
"desktop:pack:unsigned": "node scripts/electron-pack.mjs",
"desktop:pack:signed": "node scripts/electron-pack.mjs --signed",
"desktop:build": "npm run desktop:bundle && npm run desktop:pack",
"desktop:start": "npm run desktop:bundle && node scripts/electron-start.mjs",
"subtitle:prepare-component": "node scripts/prepare-offline-subtitles-component.mjs",
"subtitle:phase0": "node scripts/subtitle-phase0-spike.mjs",
"mock:splash": "tsx scripts/export-startup-splash-mock.mjs",
"lint": "eslint .",
"format:check": "node scripts/prettier-check-scoped.mjs",
"format:write": "node scripts/prettier-check-scoped.mjs --write",
"preview": "vite preview",
"bench:streaming": "node scripts/streaming-ingest-benchmark.mjs",
"bench:subtitle-rtf": "node scripts/subtitle-rtf-benchmark.mjs",
"bench:archive-db": "node scripts/archive-db-benchmark.mjs",
"bench:streaming-matrix": "node scripts/run-streaming-benchmark-matrix.mjs",
"bench:ui": "node scripts/run-ui-bench.mjs",
"bench:ui-matrix": "node scripts/run-ui-bench-matrix.mjs",
"theme:gallery": "node scripts/capture-theme-gallery.mjs",
"theme:verify:slots": "node scripts/verify-ui-slot-governance.mjs",
"subtree:setup:generaluiframe": "node scripts/subtree-generaluiframe.mjs setup",
"subtree:pull:generaluiframe": "node scripts/subtree-generaluiframe.mjs pull",
"subtree:push:generaluiframe": "node scripts/subtree-generaluiframe.mjs push",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"i18n:check": "node scripts/i18n-check.mjs",
"security:audit": "node scripts/audit-filter.mjs",
"quality:ci": "npm run format:check && npm run lint && npm run build && npx vitest run && npm run test:coverage && npm run security:audit && npx --yes jscpd src electron --config .jscpd.json --silent",
"baseline:verify-clean": "node scripts/verify-clean-worktree.mjs"
},
"dependencies": {
"7z-wasm": "^1.2.0",
"axios": "^1.17.0",
"cheerio": "^1.1.2",
"https-proxy-agent": "^7.0.6",
"node-unrar-js": "^2.0.2",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"sharp": "^0.34.5",
"sherpa-onnx-node": "^1.12.25",
"socks-proxy-agent": "^8.0.5",
"zod": "^4.3.6",
"zustand": "^5.0.11"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.2.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.4",
"@vitest/coverage-v8": "^4.1.8",
"better-sqlite3": "^12.6.2",
"electron": "^40.10.3",
"esbuild": "^0.28.1",
"eslint": "^9.39.3",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^17.3.0",
"jsdom": "^28.1.0",
"rollup-plugin-visualizer": "^7.0.1",
"tsx": "^4.22.4",
"typescript": "~5.9.3",
"typescript-eslint": "^8.56.0",
"vite": "^7.3.5",
"vitest": "^4.1.8"
},
"overrides": {
"minimatch": "10.2.4"
},
"build": {
"appId": "com.darkstarrd.mediaplayerx",
"productName": "MediaPlayerX",
"directories": {
"output": "release"
},
"files": [
"dist/**",
"dist-electron/**",
"build/icons/**",
"node_modules/**",
"package.json"
],
"asarUnpack": [
"**/*.node"
],
"win": {
"icon": "build/icons/icon.ico",
"signAndEditExecutable": false,
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
]
},
"mac": {
"icon": "build/icons/icon.icns"
},
"linux": {
"icon": "build/icons/512x512.png"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true
}
}
}