-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.04 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
{
"name": "@sheenieboy/chobots",
"icon": "icon.png",
"version": "1.0.6",
"description": "Desktop client for Chobots.world",
"main": "./build/main.js",
"packageManager": "[email protected]",
"scripts": {
"build": "tsc",
"start": "tsc && electron .",
"make-win": "tsc && electron-builder build --win --publish never",
"make-mac": "tsc && electron-builder build --mac --publish never",
"make-win-publish": "tsc && electron-builder build --win --publish always",
"make-mac-publish": "tsc && electron-builder build --mac --publish always"
},
"devDependencies": {
"@types/electron-store": "^3.2.0",
"electron": "^8.5.5",
"electron-builder": "23.0.0-alpha.3",
"electron-packager": "^15.4.0",
"npm": "^8.1.2",
"typescript": "^4.5.5"
},
"dependencies": {
"@types/discord-rpc": "^4.0.0",
"@types/node": "^17.0.8",
"@types/request": "^2.48.8",
"@types/uuid": "^8.3.4",
"discord-rpc": "^4.0.1",
"electron-log": "^4.4.6",
"electron-store": "^8.0.1",
"electron-updater": "5.0.0-alpha.4",
"esm": "^3.2.25",
"node-gyp": "^8.4.1",
"request": "^2.88.2"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"bugs": {
"url": "https://github.com/sheenieboy/ChobotsClientNew"
},
"homepage": "https://github.com/sheenieboy/ChobotsClientNew",
"repository": {
"type": "git",
"url": "git+https://github.com/sheenieboy/ChobotsClientNew.git"
},
"author": "Chobots, Inc",
"license": "BSD-2-Clause",
"build": {
"appId": "com.chobots.desktop",
"productName": "Chobots",
"icon": "icon.png",
"asar": "false",
"files": [
"!src/*",
"./build",
"./pages",
"./flashPlugin",
"./ABOUT.txt"
],
"win": {
"publish": "github"
},
"mac": {
"publish": "github"
},
"linux": {
"executableName": "Chobots",
"artifactName": "${productName}-${version}.${ext}"
},
"dmg": {
"window": {
"width": "540",
"height": "380"
}
}
},
"keywords": []
}