-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.65 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
{
"name": "cpavalancheclient",
"version": "1.0.5",
"description": "CPAvalanche Client",
"main": "./compiled/main.js",
"scripts": {
"clean": "rimraf compiled/",
"copy-files": "copyfiles -u 1 assets/**/* assets/* assets/flash/PepperFlashPlayer.plugin/Contents/* assets/flash/PepperFlashPlayer.plugin/Contents/_CodeSignature/* assets/flash/PepperFlashPlayer.plugin/Contents/MacOs/* 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 --x64 --publish never"
},
"bugs": {
"url": "https://github.com/Club-Penguin-Avalanche/CPA-Client/issues"
},
"homepage": "https://github.com/Club-Penguin-Avalanche/CPA-Client/#readme",
"repository": "https://github.com/Club-Penguin-Avalanche/CPA-Client",
"author": "renanrcp",
"license": "MIT",
"build": {
"electronDist": "node_modules/electron/dist",
"appId": "com.clubpenguin.avalanche.client",
"productName": "CPAvalanche Client",
"asar": "false",
"win": {
"publish": "github",
"artifactName": "CPAvalanche-Client-Setup-${version}.${ext}"
},
"mac": {
"category": "game",
"icon": "./assets/icon.icns",
"artifactName": "CPAvalanche-Client-${version}.${ext}"
},
"linux": {
"category": "game",
"publish": "github",
"target": [
"deb",
"AppImage"
],
"icon": "./assets/icon.icns",
"maintainer": "renanrcp"
},
"appImage": {
"synopsis": "Cliente do Club Penguin Avalanche",
"description": "Cliente que permite jogar CPAvalanche.",
"category": "Games",
"artifactName": "CPAvalanche-Client-${version}.${ext}"
}
},
"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": "23.0.2",
"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"
}
}