-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 1.52 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": "rpcengine",
"productName": "rpcengine",
"version": "2.4.0",
"description": "A free way to customize discord richpresence",
"main": "src/main.js",
"scripts": {
"start": "electron .",
"dist:windows": "electron-builder --windows",
"dist:linux": "electron-builder --linux",
"lint": "eslint-config-standard"
},
"keywords": [
"discord",
"rpc",
"electron"
],
"author": "theqoobee <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/theqoobee/rpcengine.git"
},
"license": "MIT",
"dependencies": {
"discord-rpc": "^3.1.0",
"jquery": "^3.4.1",
"lodash.isequal": "^4.5.0",
"npm": "^6.13.6",
"standard": "^14.3.1"
},
"devDependencies": {
"electron-builder-squirrel-windows": "^22.3.3",
"decache": "^4.5.1",
"electron": "7.1.8",
"electron-builder": "^22.3.2",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1"
},
"bugs": {
"url": "https://github.com/theqoobee/rpcengine/issues"
},
"homepage": "https://github.com/theqoobee/rpcengine#readme",
"build": {
"icon": "icon.png",
"appId": "com.theqoobee.rpcengine",
"linux": {
"target": [
"deb",
"snap",
"rpm"
],
"category": "Utility"
},
"win": {
"target": [
"squirrel",
"nsis-web"
]
}
}
}