-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 972 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 972 Bytes
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
{
"name": "hawkclient",
"description": "HawkClient, an app to test APIs",
"version": "1.11.1",
"private": true,
"author": "Prashant Rathi <prashantrathi321@gmail.com>",
"workspaces": [
"packages/electron",
"packages/ui"
],
"homepage": "https://hawkclient.com",
"scripts": {
"watch": "npm run watch -w packages/ui",
"electron-dev": "npm run electron-dev -w packages/electron",
"build:renderer": "npm run build:renderer -w packages/ui",
"dist:mac": "npm run dist:mac -w packages/electron",
"dist:win": "npm run dist:win -w packages/electron",
"dist:linux": "npm run dist:linux -w packages/electron",
"dist:deb": "npm run dist:deb -w packages/electron",
"dist:rpm": "npm run dist:rpm -w packages/electron",
"dist:snap": "npm run dist:snap -w packages/electron"
},
"devDependencies": {
"javascript-obfuscator": "^4.1.1",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"7zip-bin": "^5.2.0"
}
}