-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 964 Bytes
/
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
{
"name": "jseek",
"version": "1.0.0",
"description": "search",
"main": "src/index.js",
"scripts": {
"pray": "electron src/index.js",
"build": "electron-builder"
},
"keywords": [],
"author": "Jooapa",
"devDependencies": {
"electron": "^31.3.0",
"electron-builder": "^25.0.5",
"ps-tree": "^1.2.0"
},
"build": {
"appId": "com.jooapa.jseek",
"files": [
"src/**/*",
"backend/build/jseek.exe",
"backend/build/Everything64.dll",
"package.json"
],
"extraFiles": [
{
"from": "backend/build/Everything64.dll",
"to": "resources/backend/Everything64.dll"
},
{
"from": "backend/build/jseek.exe",
"to": "resources/backend/jseek.exe"
}
],
"directories": {
"output": "dist"
}
}
}