-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.77 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
72
73
74
75
76
{
"name": "file-search-tool",
"productName": "文件搜索工具",
"version": "1.0.0",
"main": "search-main.js",
"scripts": {
"start": "electron .",
"dev": "electron . --dev",
"build": "electron-builder",
"build:win": "electron-builder --win",
"build:dir": "electron-builder --dir",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"file-search",
"search-tool",
"electron",
"windows"
],
"author": "Your Name",
"license": "ISC",
"description": "高效的文件搜索工具 - 智能范围缩小算法,支持多种文件类型过滤",
"devDependencies": {
"electron": "^41.1.1",
"electron-builder": "^24.13.3"
},
"build": {
"appId": "com.filesearch.tool",
"productName": "文件搜索工具",
"directories": {
"output": "dist"
},
"files": [
"file-search.html",
"search-renderer.js",
"search-main.js",
"search-preload.js",
"Search.ico",
"package.json"
],
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
},
{
"target": "portable",
"arch": [
"x64"
]
}
],
"icon": "Search.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "文件搜索工具",
"installerIcon": "Search.ico",
"uninstallerIcon": "Search.ico",
"installerHeaderIcon": "Search.ico",
"deleteAppDataOnUninstall": true
},
"portable": {
"artifactName": "文件搜索工具-${version}-portable.exe"
}
},
"dependencies": {
"build": "^0.1.4"
}
}