-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.7 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
{
"name": "discord-richer-presence",
"version": "1.0.1-alpha",
"private": true,
"description": "Powerful tool to customize your Discord Rich Presence",
"author": "DavG25 <[email protected]> (https://davg25.com)",
"scripts": {
"vue": "set \"NODE_ENV=development\" && vue-cli-service serve --host localhost --port 2502",
"electron": "set \"NODE_ENV=development\" && electron .",
"serve": "concurrently \"set \"NODE_ENV=development\" && npm run vue\" \"set \"NODE_ENV=development\" && npm run electron\"",
"lint": "eslint \"*.js\" \"vue/src/**/*.{js,vue}\" \"electron/**/*.js\" \"express/**/*.js\" \"rpc/**/*.js\" \"userdata/**/*.js\"",
"fix": "eslint --fix \"*.js\" \"vue/src/**/*.{js,vue}\" \"electron/**/*.js\" \"express/**/*.js\" \"rpc/**/*.js\" \"userdata/**/*.js\"",
"build": "npm run lint && vue-cli-service build --dest dist\\vue\\dist && electron-builder build --win"
},
"dependencies": {
"@bitdisaster/exe-icon-extractor": "^1.0.10",
"@electron/remote": "^1.1.0",
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@fortawesome/vue-fontawesome": "^2.0.2",
"appdata-path": "^1.0.0",
"bulma": "^0.9.2",
"cors": "^2.8.5",
"deep-object-diff": "^1.1.0",
"discord-rpc": "^3.2.0",
"dotenv": "^8.2.0",
"electron-log": "^4.3.3",
"electron-updater": "^4.3.8",
"express": "^4.17.1",
"is-uri": "^1.2.0",
"json5": "^2.2.2",
"moment": "^2.29.1",
"node-fetch": "^2.6.1",
"normalize-path": "^3.0.0",
"powershell": "^2.3.2",
"register-service-worker": "^1.7.1",
"sass": "^1.32.8",
"sass-loader": "^10.1.1",
"uuid": "^8.3.2",
"v-tooltip": "^2.1.3",
"vue": "^2.6.11",
"vue-gtag": "^1.11.0",
"vue-meta": "^2.4.0",
"vue-moment": "^4.1.0",
"vue-pattern-input": "^2.1.4",
"vue-router": "^3.2.0",
"vue-toast-notification": "^0.6.1",
"vuex": "^3.6.2"
},
"devDependencies": {
"@vue/cli-plugin-eslint": "^4.5.12",
"@vue/cli-plugin-pwa": "~4.5.0",
"@vue/cli-plugin-router": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"concurrently": "^6.0.0",
"electron": "^12.0.1",
"eslint": "^7.23.0",
"eslint-plugin-vue": "^7.8.0",
"vue-template-compiler": "^2.6.11"
},
"build": {
"publish": [
{
"provider": "generic",
"url": "https://www.davg25.com/app/discord-richer-presence/dist/"
}
],
"appId": "com.davg25.discordricherpresence",
"extraFiles": [
{
"from": "dist/vue/dist",
"to": "dist"
}
],
"directories": {
"output": "dist/electron"
},
"win": {
"icon": "electron/icons/icon.ico"
}
},
"productName": "Discord Richer Presence"
}