-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.88 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
{
"name": "rls",
"version": "1.0.0",
"description": "Bundler and webserver for GooseMod repos.",
"main": "src/index.js",
"scripts": {
"server": "node -r dotenv/config ./src/index.js",
"check": "node ./scripts/pccompatCheck.js",
"clonegm": "git clone https://github.com/GooseMod/GooseMod",
"updategm": "cd GooseMod && git pull"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xirreal/RLS.git"
},
"author": "Ducko, Alethéia",
"license": "MIT",
"bugs": {
"url": "https://github.com/xirreal/RLS/issues"
},
"homepage": "https://github.com/xirreal/RLS#readme",
"dependencies": {
"@octokit/webhooks": "^9.11.0",
"axios": "^0.21.1",
"dotenv": "^10.0.0",
"glob": "^7.1.6",
"openpgp": "^5.0.0-5",
"parcel-bundler": "^1.12.4",
"readline-sync": "^1.4.10",
"sass": "^1.32.8"
},
"alias": {
"@goosemod/patcher": "./moduleWrappers/goosemod/patcher.js",
"@goosemod/webpack": "./moduleWrappers/goosemod/webpack.js",
"@goosemod/webpack/common": "./moduleWrappers/goosemod/webpackCommon.js",
"@goosemod/logger": "./moduleWrappers/goosemod/logger.js",
"@goosemod/reactUtils": "./moduleWrappers/goosemod/reactUtils.js",
"@goosemod/toast": "./moduleWrappers/goosemod/toast.js",
"@goosemod/settings": "./moduleWrappers/goosemod/settings.js",
"@goosemod/plugin": "./moduleWrappers/goosemod/plugin.js",
"powercord/entities": "./moduleWrappers/powercord/entities.js",
"powercord/injector": "./moduleWrappers/powercord/injector.js",
"powercord/webpack": "./moduleWrappers/powercord/webpack.js",
"powercord/util": "./moduleWrappers/powercord/util.js",
"powercord/components/settings": "./moduleWrappers/powercord/components/settings/index.js",
"_powercord/global": "./moduleWrappers/powercord/global/index.js",
"electron": "./moduleWrappers/electron/index.js"
},
"type": "module"
}