-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
43 lines (43 loc) · 1.4 KB
/
package.json
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
{
"name": "Endplayer",
"version": "0.4.0",
"description": "Electron N Danmaku Player",
"main": "main.js",
"author": "a-wing <[email protected]>",
"license": "GPL-3.0",
"scripts": {
"use-system-ffmpeg": "gcc -Wl,--no-as-needed -shared -lavformat -o node_modules/electron/dist/libffmpeg.so",
"start": "npx electron src/tsc/main.js",
"build": "tsc && webpack --mode production --config webpack.config.renderer.js",
"dev-renderer": "webpack --watch --mode development --config webpack.config.renderer.js",
"dev": "cross-env NODE_ENV=development concurrently --kill-others 'npx tsc -w' 'npm run dev-renderer' 'npm run start'"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@types/react": "^16.9.19",
"@types/react-dom": "^16.9.5",
"babel-loader": "^8.0.6",
"classnames": "^2.2.6",
"concurrently": "^4.1.2",
"cross-env": "^7.0.0",
"electron": "^4.2.12",
"electron-devtools-installer": "^2.2.4",
"immer": "^5.3.2",
"typescript": "^3.7.5",
"webpack": "^5.0.0-beta.13",
"webpack-cli": "^3.3.10"
},
"dependencies": {
"assjs": "0.0.10",
"danmaku": "^1.3.6",
"hotkeys-js": "^3.7.3",
"mpv.js": "^0.3.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-redux": "^7.1.3",
"redux": "^4.0.5"
}
}