-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
109 lines (109 loc) · 3.07 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@shabados/presenter",
"version": "0.0.1",
"description": "Electron wrapper around Shabad OS backend and frontend",
"main": "app/electron/esm-wrapper.js",
"scripts": {
"changelog": "sh get-changelog.sh",
"lint": "npm-run-all -l -p lint:*",
"lint:backend": "cd app && npm run lint",
"lint:frontend": "cd app/frontend && npm run lint",
"test": "echo \"No tests\"",
"start": "npm-run-all -l -p start:backend start:frontend",
"start:backend": "cd app && npm run start",
"start:frontend": "cd app/frontend && npm start",
"start:electron": "cd app && electron electron/esm-wrapper electron-wrapper",
"build": "cd app/frontend && npm run build",
"install-deps": "npm run install-deps:backend && npm run install-deps:frontend",
"install-deps:backend": "cd app && npm install",
"install-deps:frontend": "cd app/frontend && npm install",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"release": "electron-builder",
"postinstall": "electron-builder install-app-deps &&npm run install-deps"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shabados/presenter.git"
},
"author": "Shabad OS Team <[email protected]>",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/shabados/presenter/issues"
},
"homepage": "https://github.com/shabados/presenter#readme",
"devDependencies": {
"babel-eslint": "^10.1.0",
"conventional-changelog-cli": "^2.0.34",
"electron": "13.1.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsdoc": "^3.15.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.21.4",
"eslint-plugin-react-hooks": "^4.1.2",
"npm-run-all": "^4.1.5"
},
"build": {
"appId": "com.shabados.desktop",
"asar": false,
"afterSign": "./hooks/after-sign.js",
"directories": {
"buildResources": "resources"
},
"productName": "Shabad OS",
"extraMetadata": {
"name": "Shabad OS"
},
"publish": {
"provider": "github",
"releaseType": "release"
},
"win": {
"artifactName": "Shabad.OS-Setup-${version}.${ext}",
"sign": "./hooks/sign-windows.js",
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
}
]
},
"mac": {
"artifactName": "Shabad.OS-${version}.${ext}",
"target": [
"dmg",
"zip"
],
"entitlements": "./resources/entitlements.mac.plist",
"entitlementsInherit": "./resources/entitlements.mac.plist"
},
"linux": {
"artifactName": "Shabad.OS-${version}_${arch}.${ext}",
"target": [
{
"target": "AppImage",
"arch": [
"x64",
"ia32"
]
},
{
"target": "deb",
"arch": [
"x64",
"ia32"
]
}
]
}
},
"dependencies": {
"electron-builder": "^22.8.0",
"electron-notarize": "^0.1.1"
}
}