generated from docrostov/kol-ts-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.32 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
{
"name": "bloop",
"version": "0.0.0",
"description": "MrFizzy(B)ubbs' loop script",
"repository": "https://github.com/MrFizzyBubbs/bloop",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "yarn run build:types && yarn run build:js",
"build:types": "tsc",
"build:js": "webpack",
"lint": "eslint src && prettier --check .",
"lint:fix": "eslint src --fix && prettier --check --write .",
"watch": "webpack --watch --progress"
},
"author": "MrFizzyBubbs",
"license": "Apache",
"dependencies": {
"core-js": "^3.16.4",
"garbo-lib": "^1.0.0",
"grimoire-kolmafia": "^0.3.26",
"kolmafia": "^5.28024.0",
"libram": "^0.9.4"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.15.0",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-object-rest-spread": "^7.14.7",
"@babel/preset-env": "^7.15.0",
"@babel/preset-typescript": "^7.15.0",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"babel-loader": "^8.2.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-libram": "^0.3.5",
"prettier": "^2.3.2",
"typescript": "^4.4.2",
"webpack": "^5.51.1",
"webpack-cli": "^4.8.0"
}
}