-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 852 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 852 Bytes
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
{
"name": "wechat-electrobun-bot",
"version": "0.2.0",
"description": "ElectroBun 桌面版微信自动回复助手(注入 + 监听 + DeepSeek 自动回复)",
"main": "main.js",
"type": "commonjs",
"scripts": {
"dev": "electron .",
"start": "electron .",
"lint": "node --check main.js && node --check preload.js && node --check renderer/app.js",
"build:win": "electron-builder --win portable"
},
"devDependencies": {
"electron-builder": "^24.13.3",
"electron": "^31.7.7"
},
"build": {
"appId": "com.wada.bot",
"productName": "WadaBot",
"directories": {
"output": "dist",
"buildResources": "build"
},
"files": [
"**/*",
"!dist/**",
"!.github/**"
],
"win": {
"target": [
"portable"
],
"icon": "build/icon.ico"
}
}
}