-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 903 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 903 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
37
38
{
"name": "batch-rename-tool",
"version": "1.0.0",
"description": "批量文件重命名工具",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder --publish never",
"build:win": "electron-builder --win --publish never",
"build:mac": "electron-builder --mac --publish never",
"build:linux": "electron-builder --linux --publish never"
},
"author": "OpenClaw",
"license": "MIT",
"devDependencies": {
"electron": "^28.0.0",
"electron-builder": "^24.9.1"
},
"build": {
"appId": "com.openclaw.batch-rename-tool",
"productName": "批量重命名工具",
"files": [
"main.js",
"preload.js",
"src/**/*"
],
"mac": {
"target": "dmg",
"category": "public.app-category.utilities"
},
"win": {
"target": "nsis"
},
"linux": {
"target": "AppImage"
}
}
}