forked from loathers/garbage-collector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.11 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
{
"name": "garbage-collector",
"version": "1.0.0",
"description": "Script for farming meat (and garbage) in 2004 web RPG Kingdom of Loathing",
"repository": "https://github.com/Loathing-Associates-Scripting-Society/garbage-collector.git",
"main": "KoLmafia/scripts/garbage-collector/garbo.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "patch-package",
"build": "yarn run build:types && yarn run build:js",
"build:types": "tsc",
"build:js": "webpack",
"watch": "webpack --watch --progress"
},
"author": "",
"license": "MIT",
"dependencies": {
"core-js": "^3.8.0",
"kolmafia": "^1.0.3",
"libram": "^0.0.5"
},
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.9",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"babel-loader": "^8.2.2",
"patch-package": "^6.2.2",
"typescript": "^4.0.3",
"webpack": "^5.8.0",
"webpack-cli": "^4.2.0"
}
}