-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
116 lines (116 loc) · 2.82 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "jlivertool",
"version": "develop",
"description": "Simple Bilibili Danmaku Tool",
"homepage": "https://github.com/Xinrea/JLiveTool",
"main": "src/main.js",
"scripts": {
"start": "npx webpack && cross-env DEBUG=true electron . --trace-warnings",
"build": "npx webpack && electron-builder build -lmw --publish=never",
"build-win": "npx webpack && electron-builder build --win -p never",
"build-mac": "npx webpack && electron-builder build --mac -p never",
"build-linux": "npx webpack && electron-builder build --linux -p never",
"test": "mocha --require ts-node/register 'src/**/*.test.ts'"
},
"build": {
"win": {
"artifactName": "${productName}-Setup-${version}.${ext}",
"icon": "src/assets/icons/icon.png",
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
]
},
"mac": {
"icon": "src/assets/icons/icon.png",
"target": [
{
"target": "dmg",
"arch": [
"x64"
]
}
]
},
"linux": {
"icon": "src/assets/icons/",
"target": [
{
"target": "deb",
"arch": [
"x64"
]
},
{
"target": "AppImage",
"arch": [
"x64"
]
},
{
"target": "pacman",
"arch": [
"x64"
]
}
],
"category": "Utility",
"description": "Simple Bilibili Danmaku Tool"
}
},
"author": "Xinrea <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/alpinejs": "^3.7.1",
"@types/brotli": "^1.3.3",
"@types/chai": "^4.3.6",
"@types/mocha": "^10.0.1",
"@types/pako": "^2.0.0",
"@types/qrcode": "^1.5.5",
"@types/uuid": "^9.0.3",
"@types/ws": "^8.5.5",
"chai": "^4.3.8",
"cross-env": "^7.0.3",
"electron": "^26.2.4",
"electron-builder": "^24.6.4",
"mocha": "^10.2.0",
"node-loader": "^2.0.0",
"ts-loader": "^9.4.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"@jalik/logger": "^3.2.0",
"alpinejs": "^3.10.4",
"axios": "^1.6.1",
"brotli": "^1.3.3",
"bufferutil": "^4.0.7",
"concurrently": "^7.4.0",
"electron-log": "^5.0.0-beta.16",
"exceljs": "^4.3.0",
"filereader": "^0.10.3",
"font-list": "^1.5.1",
"form-data": "^4.0.0",
"lowdb": "^6.0.1",
"moment": "^2.29.1",
"node-fetch": "^3.3.2",
"openurl": "^1.1.1",
"pako": "^2.0.4",
"qrcode": "^1.5.3",
"querystring": "^0.2.1",
"semver": "^7.5.4",
"source-map-support": "^0.5.21",
"uuid": "^8.3.2",
"ws": "^8.14.2",
"yaml": "^2.2.1"
},
"optionalDependencies": {
"dmg-license": "^1.0.11"
}
}