-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.54 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
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
{
"name": "anioke",
"version": "0.2.0",
"private": true,
"author": "Sketch",
"contributors": [
{
"name": "maoqxm",
"email": "[email protected]",
"url": "https://github.com/maoqxxmm"
}
],
"description": "Karaoki your anime songs.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/zhxie/anioke.git"
},
"homepage": ".",
"main": "public/main.js",
"build": {
"appId": "name.sketch.anioke",
"productName": "Anioke",
"extraMetadata": {
"main": "build/main.js"
},
"files": [
"build/**/*"
],
"asarUnpack": [
"node_modules/@alpacamybags118/yt-dlp-exec/**/*",
"node_modules/ffmpeg-static/**/*"
],
"mac": {
"category": "entertainment",
"icon": "assets/icon.icns"
},
"win": {
"icon": "assets/icon.ico"
}
},
"dependencies": {
"@alpacamybags118/yt-dlp-exec": "^0.1.1",
"@ant-design/icons": "^4.7.0",
"@jellyfin/libass-wasm": "^4.1.1",
"@napi-rs/canvas": "^0.1.29",
"antd": "^4.21.5",
"appdata-path": "^1.0.0",
"better-sqlite3": "^8.0.0",
"deep-extend": "^0.6.0",
"express": "^4.18.1",
"express-http-proxy": "^1.6.3",
"ffmpeg-static": "^5.0.2",
"i18next": "^21.8.13",
"iconv-lite": "^0.6.3",
"internal-ip": "^7.0.0",
"lrc-kit": "^1.1.1",
"node-fetch": "^3.2.6",
"open-file-explorer": "^1.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^11.18.0",
"react-qr-code": "^2.0.7",
"snake-camel": "^1.0.8",
"xml2js": "^0.4.23",
"yt-dlp-wrap": "^2.3.11"
},
"scripts": {
"start": "react-app-rewired start",
"build": "build-electron && react-app-rewired build",
"electron": "concurrently -k \"cross-env BROWSER=none npm start\" \"build-electron -d\" \"wait-on public/.build-electron-done http://127.0.0.1:3000 && electronmon .\"",
"postinstall": "electron-builder install-app-deps && cp node_modules/@jellyfin/libass-wasm/dist/js/subtitles-octopus-worker.* public/"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"browserslist": {
"production": [
"last 1 electron version"
],
"development": [
"last 1 electron version"
]
},
"devDependencies": {
"build-electron": "^1.0.5",
"concurrently": "^7.2.2",
"cross-env": "^7.0.3",
"electron": "^20.1.0",
"electron-builder": "^23.1.0",
"electronmon": "^2.0.2",
"node-loader": "^2.0.0",
"react-app-rewired": "^2.2.1",
"react-scripts": "5.0.1",
"wait-on": "^6.0.1"
}
}