forked from renanrcp/CPClient
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.92 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
{
"name": "cpclient",
"version": "2.0.1",
"description": "CP Client",
"main": "./compiled/main.js",
"scripts": {
"clean": "rimraf compiled/",
"copy-files": "copyfiles -u 1 assets/**/* assets/* compiled/assets/",
"build-tsc": "yarn clean && tsc && yarn copy-files",
"start": "yarn build-tsc && electron ./compiled/main.js",
"lint": "eslint -c .eslintrc --ext .ts ./src",
"build-win": "electron-builder build --win --publish never",
"build-mac": "electron-builder build --mac --publish never",
"build-linux": "electron-builder build --linux --ia32 --x64 --publish never --x64"
},
"bugs": {
"url": "https://github.com/sl4f/CPClient/issues"
},
"homepage": "https://github.com/sl4f/CPClient/#readme",
"repository": "https://github.com/sl4f/CPClient",
"author": "sl4f",
"license": "MIT",
"build": {
"electronDist": "node_modules/electron/dist",
"appId": "com.clubpenguin.client",
"productName": "CPClient",
"asar": "false",
"win": {
"publish": "github"
},
"mac": {
"icon": "./assets/icon.icns"
},
"linux": {
"publish": "github",
"target": "deb",
"maintainer": "sl4f"
}
},
"devDependencies": {
"@types/discord-rpc": "^4.0.3",
"@types/electron-prompt": "^1.6.1",
"@types/node": "^18.13.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"copyfiles": "^2.4.1",
"electron": "^11.3.0",
"electron-builder": "^22.2.0",
"eslint": "^8.34.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"rimraf": "^4.1.2",
"typescript": "^4.9.5"
},
"dependencies": {
"@cliqz/adblocker-electron": "^1.25.2",
"cross-fetch": "^3.1.5",
"discord-rpc": "^4.0.1",
"electron-fetch": "^1.9.1",
"electron-is-dev": "^2.0.0",
"electron-log": "^5.0.0-beta.16",
"electron-prompt": "^1.7.0",
"electron-store": "^8.1.0",
"electron-updater": "^5.3.0"
}
}