forked from BetterDiscord/Installer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.37 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
{
"name": "powercord-installer",
"productName": "Powercord Installer",
"description": "A simple standalone program which automates the installation, removal and maintenance of Powercord.",
"author": "Garlic-Team",
"contributors": [
{
"name": "xHyroM",
"url": "https://github.com/xHyroM"
}
],
"version": "1.1.5",
"license": "MIT",
"scripts": {
"dev": "electron-webpack dev",
"compile": "electron-webpack",
"lint": "eslint --ext .svelte,.js src/",
"stats": "webpack --json --profile --config webpack.renderer.js > dist/stats.json",
"analyze": "webpack-bundle-analyzer dist/stats.json",
"dist": "yarn compile && electron-builder -p never",
"dist:dir": "yarn dist --dir -c.compression=store -c.mac.identity=null"
},
"dependencies": {
"source-map-support": "^0.5.16"
},
"devDependencies": {
"electron": "^9.4.0",
"electron-builder": "^22.4.1",
"electron-webpack": "^2.8.2",
"eslint": "^7.21.0",
"eslint-plugin-svelte3": "^3.1.2",
"find-process": "^1.4.7",
"focus-visible": "^5.2.0",
"phin": "^3.6.0",
"rimraf": "^3.0.2",
"semver": "^7.3.5",
"svelte": "^3.38.2",
"svelte-loader": "^3.0.0",
"svelte-spa-router": "^3.1.0",
"tree-kill": "^1.2.2",
"webpack": "~4.42.1",
"webpack-bundle-analyzer": "^4.4.0"
},
"build": {
"appId": "app.powercord.installer",
"productName": "Powercord",
"copyright": "Copyright © 2021 BetterDiscord",
"afterAllArtifactBuild": "scripts/fixmac.js",
"win": {
"artifactName": "${productName}-Windows.${ext}",
"icon": "assets/icon.ico",
"target": {
"target": "portable",
"arch": [
"ia32"
]
}
},
"portable": {
"requestExecutionLevel": "user",
"useZip": true
},
"mac": {
"artifactName": "${productName}-Mac.${ext}",
"icon": "assets/icon.icns",
"category": "public.app-category.social-networking",
"target": {
"target": "zip",
"arch": [
"x64"
]
}
},
"linux": {
"artifactName": "${productName}-Linux.${ext}",
"category": "Utility",
"target": {
"target": "AppImage",
"arch": [
"x64"
]
}
}
},
"electronWebpack": {
"staticSourceDirectory": "assets",
"renderer": {
"webpackConfig": "webpack.renderer.js"
}
}
}