-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
38 lines (38 loc) · 847 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
{
"name": "drawsvg-editor",
"productName": "DRAW-SVG Editor",
"description": "Electron distribution of DRAW-SVG Editor",
"keywords": [
"SVG",
"editor",
"drawing"
],
"license": "LGPL-3.0-only",
"main": "src/main.js",
"version": "10.0.0",
"author": "joseph LIARD",
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"repository": "https://github.com/DRAWSVG/drawsvg-editor",
"build": {
"appId": "com.github.drawsvg.editor",
"asar": true,
"win": {
"icon": "build/jay-rond.png"
},
"directories": {
"buildResources": "build",
"output": "dist"
}
},
"dependencies": {
"update-electron-app": "^2.0.1"
},
"devDependencies": {
"electron": "11.0.0-beta.20",
"electron-builder": "^22.9.1"
}
}