-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
93 lines (92 loc) · 2.56 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
{
"name": "easy-rpc",
"version": "3.0.3",
"description": "A easy discord rpc",
"main": "./dist/index.js",
"workspaces": [
"ui"
],
"scripts": {
"compile": "tsc",
"watch": "tsc -w",
"dev": "yarn compile && electron ./dist/index.js",
"build:ui": "cd ui && yarn build",
"build:all": "yarn compile && electron-builder -mwl",
"build:mac": "yarn compile && electron-builder --mac",
"build:win": "yarn compile && electron-builder --win",
"build:linux": "yarn compile && electron-builder --linux"
},
"keywords": [
"Discord",
"RPC",
"Easy"
],
"author": "Amitoj Singh <amitoj@amitoj.net>",
"homepage": "https://github.com/amitojsingh366/easy-rpc",
"repository": {
"type": "git",
"url": "https://github.com/amitojsingh366/easy-rpc"
},
"bugs": {
"url": "https://github.com/amitojsingh366/easy-rpc/issues"
},
"build": {
"files": [
"./icons/**/*",
"./dist/**/*",
"./public/**/*"
],
"appId": "net.amitoj.easy-rpc",
"productName": "Easy RPC",
"asar": true,
"afterSign": "electron-builder-notarize",
"mac": {
"hardenedRuntime": true,
"icon": "icons/icon.png",
"entitlements": "settings/entitlements.mac.plist",
"category": "public.app-category.utilities",
"target": [
"dmg",
"zip"
]
},
"win": {
"icon": "icons/icon.png",
"target": "nsis",
"publish": [
"github"
]
},
"linux": {
"icon": "icons/icon.png",
"target": [
"deb",
"AppImage"
]
},
"directories": {
"output": "./builds"
},
"extends": null
},
"dependencies": {
"auto-launch": "^5.0.5",
"discord-rpc": "^4.0.1",
"electron-log": "^4.4.1",
"electron-updater": "^4.6.1"
},
"devDependencies": {
"@types/auto-launch": "^5.0.2",
"@types/discord-rpc": "^3.0.6",
"electron": "^15.3.0",
"electron-builder": "^22.13.1",
"electron-builder-notarize": "^1.2.0",
"typescript": "4.2.3"
},
"files": [
"./icons/**/*",
"./dist/**/*",
"./public/**/*"
],
"packageManager": "yarn@3.1.0"
}