-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.97 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
{
"name": "awoo-musicbot",
"private": true,
"version": "1.2.3",
"type": "module",
"description": "嗷呜点歌机 - 支持多播放器的 Bilibili 弹幕点歌机器人",
"author": "Enkianssus",
"productName": "嗷呜点歌机",
"main": "dist-electron/main.js",
"scripts": {
"dev": "vite",
"build": "tsc && vite build && electron-builder",
"build:dev": "tsc && vite build && electron-builder --dir --config.directories.output=dist_electron_dev_1.2.3",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"test": "node --test tests/*.test.mjs",
"preview": "vite preview"
},
"dependencies": {
"bufferutil": "^4.1.0",
"qrcode": "^1.5.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"utf-8-validate": "^6.0.6",
"velopack": "^0.0.1589-ga2c5a97",
"ws": "^8.21.0",
"yauzl": "3.4.0"
},
"devDependencies": {
"@types/qrcode": "^1.5.5",
"@types/react": "^18.2.64",
"@types/react-dom": "^18.2.21",
"@types/ws": "^8.18.1",
"@types/yauzl": "3.4.0",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.5.0",
"electron": "^42.0.1",
"electron-builder": "^24.13.3",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"postcss": "^8.5.14",
"tailwindcss": "^3.4.19",
"typescript": "^5.2.2",
"vite": "^5.1.6",
"vite-plugin-electron": "0.28.8",
"vite-plugin-electron-renderer": "^0.14.5"
},
"build": {
"appId": "com.enkianssus.awoomusicbot",
"productName": "嗷呜点歌机",
"directories": {
"output": "dist_electron"
},
"win": {
"icon": "assets/icon.ico",
"executableName": "嗷呜点歌机",
"target": [
{
"target": "dir"
}
]
},
"files": [
"dist",
"dist-electron",
"examples/obs-overlay"
]
}
}