-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 921 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
40
41
42
43
44
45
46
47
48
49
50
{
"name": "seatme",
"productName": "imgTalk",
"version": "1.0.0",
"description": "IMG-talk",
"main": "main.js",
"scripts": {
"start": "electron .",
"package": "electron-builder"
},
"author": "Ilya",
"license": "MIT",
"dependencies": {
"jimp": "^0.22.12",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"electron": "^31.1.0",
"electron-builder": "^24.13.3"
},
"build": {
"appId": "com.yourcompany.imgTalk",
"productName": "imgTalk",
"directories": {
"output": "dist"
},
"files": [
"main.js",
"index.html",
"style.css",
"YML_alpha.yml",
"YML_object.yml"
],
"extraFiles": [
{
"from": "node_modules/electron/dist",
"to": "electron"
}
],
"win": {
"target": "portable"
},
"mac": {
"target": "dmg"
},
"linux": {
"target": "AppImage"
}
}
}