-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
147 lines (147 loc) · 4.28 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"name": "explorook",
"version": "1.16.5",
"description": "Rookout's site addon to support local files and folders",
"main": "dist/index.js",
"scripts": {
"postinstall": "patch-package",
"build": "cross-env NODE_OPTIONS=--openssl-legacy-provider webpack --config webpack.main.config.js && cross-env NODE_OPTIONS=--openssl-legacy-provider webpack --config webpack.index-worker.config.js",
"postbuild": "copyfiles index-worker.html ./dist/",
"package-linux": "electron-builder --linux APPIMAGE",
"package-windows": "electron-builder --win",
"build-headless": "tsc",
"dist": "electron-builder",
"build-packages-all-distributions": "cross-env NODE_OPTIONS=--openssl-legacy-provider ELECTRON_BUILDER_ALLOW_UNRESOLVED_DEPENDENCIES=true electron-builder --mac --win --linux --arm64 --x64 -p always",
"lint": "tslint -c tslint.json -p tsconfig.json",
"start": "cross-env development=1 yarn run build && cross-env development=1 electron ./dist/index.js",
"start-headless": "yarn run build-headless && node ./dist/headless.js -p=44512",
"debug": "cross-env development=1 $NODE_DEBUG_OPTION yarn run build && cross-env development=1 electron --inspect-brk ./dist/index.js"
},
"build": {
"productName": "Rookout Desktop App",
"extends": null,
"appId": "com.rookout.explorook",
"afterSign": "./afterSignHook.js",
"publish": [
{
"provider": "github",
"owner": "rookout",
"repo": "explorook"
}
],
"directories": {
"output": "installers"
},
"protocols": {
"name": "rookout",
"schemes": [
"rookout"
]
},
"files": [
"dist",
"assets",
"graphql",
"index-worker.html",
"assets/icons/**/*",
"!**/node_modules/**/*"
],
"linux": {
"target": "appImage",
"category": "Utility",
"mimeTypes": [
"x-scheme-handler/rookout"
],
"desktop": {
"exec": "rookout %u"
}
},
"dmg": {
"background": "assets/dmg-background.png"
},
"mac": {
"icon": "assets/icons/mac/icons.icns"
},
"win": {
"publisherName": [
"Rookout LTD"
],
"target": "NSIS",
"sign": "./sign_windows.js",
"icon": "assets/icons/[email protected]"
}
},
"repository": "https://github.com/rookout/explorook",
"keywords": [
"Rookout",
"Explorer",
"ExploRook",
"Simple-Https"
],
"author": {
"email": "[email protected]",
"name": "Rookout"
},
"license": "MIT",
"devDependencies": {
"@bugsnag/core": "6.5.0",
"@material-ui/core": "^1.2.1",
"@material-ui/icons": "^1.1.0",
"@playlyfe/gql": "^2.6.0",
"@types/analytics-node": "^3.1.1",
"@types/auto-launch": "^5.0.0",
"@types/aws-lambda": "^8.10.17",
"@types/body-parser": "^1.17.0",
"@types/lodash": "^4.14.182",
"@types/node": "^20.12.2",
"@types/node-fetch": "^2.6.1",
"@types/semver": "^7.5.3",
"@types/url-assembler": "^2.1.2",
"aws-lambda": "^1.0.5",
"copyfiles": "^2.3.0",
"cross-env": "^5.2.0",
"electron": "26.6.10",
"electron-builder": "24.7.0",
"graphql-middleware": "6.1.28",
"node-fetch": "^2.6.7",
"ts-loader": "^9.5.1",
"tslint": "^5.10.0",
"typescript": "^5.4.3",
"webpack": "^5.91.0",
"webpack-bugsnag-plugins": "^1.4.3",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"@bugsnag/js": "6.5.2",
"@electron/notarize": "^2.1.0",
"@electron/remote": "2.0.10",
"@graphql-tools/schema": "^8.3.13",
"@segment/analytics-node": "^2.1.0",
"apollo-server-express": "3.13.0",
"args-parser": "^1.1.0",
"auto-launch": "^5.0.5",
"body-parser": "1.19.2",
"cors": "^2.8.5",
"electron-log": "4.4.7",
"electron-store": "8.0.1",
"electron-updater": "6.1.5",
"express": "4.19.2",
"graphql": "^15.4.0",
"isomorphic-git": "^1.8.2",
"lodash": "^4.17.21",
"log4js": "6.7.1",
"parse-repo": "^1.0.4",
"patch-package": "^6.4.0",
"postinstall-postinstall": "^2.1.0",
"semver": "7.5.4",
"slash": "3.0.0",
"url-assembler": "^2.1.1",
"uuid": "^3.2.1",
"walk": "^2.3.13"
},
"resolutions": {
"@playlyfe/gql/lodash": "^4.17.15",
"graphql-constraint-directive/validator": "^13.6.0"
}
}