-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
63 lines (63 loc) · 1.69 KB
/
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
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "diff-checker",
"productName": "Diff-Checker",
"version": "0.9.6",
"description": "A desktop application to compare text differences between two files",
"main": "main.js",
"repository": "https://github.com/trembacz/diff-checker",
"scripts": {
"eslint": "./node_modules/.bin/eslint --ext .js ./",
"stylelint": "./node_modules/.bin/stylelint ./assets/**/*.css",
"start": "(SET NODE_ENV=development) & electron .",
"package-all": "electron-builder -wml --ia32 --x64",
"package-win": "electron-builder --win --ia32 --x64",
"package-mac": "electron-builder --mac",
"package-linux": "electron-builder --linux",
"publish-app": "electron-builder -wml --ia32 --x64 -p always"
},
"author": "Tomasz Rembacz <[email protected]>",
"license": "MIT",
"build": {
"appId": "com.diff.checker",
"win": {
"compression": "maximum",
"target": "nsis-web",
"icon": "assets/icons/icon.ico"
},
"mac": {
"category": "public.app-category.productivity"
},
"linux": {
"category": "Productivity",
"target": [
"AppImage"
]
},
"nsisWeb": {
"allowToChangeInstallationDirectory": true,
"oneClick": false,
"createDesktopShortcut": true
},
"directories": {
"buildResources": "assets/icons",
"output": "dist"
},
"files": [
"**/*",
"!dist/*",
"!build/*",
"!node_modules/*"
]
},
"dependencies": {
"electron-updater": "~4.3.8"
},
"devDependencies": {
"electron": "^12.0.1",
"electron-builder": "22.10.5",
"eslint": "^7.22.0",
"stylelint": "^13.12.0",
"stylelint-config-standard": "^21.0.0",
"stylelint-order": "^4.1.0"
}
}