-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
63 lines (63 loc) · 1.58 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
{
"name": "openrct2-benchwarmer",
"version": "1.2.0",
"type": "module",
"description": "Add benches and trash cans to all of your paths with one click",
"main": "dist/benchwarmer.js",
"scripts": {
"build": "tsup",
"build:install": "cpy ./dist/benchwarmer.js \"${OPENRCT2_DIR}/plugin\"",
"test": "jest",
"lint": "eslint .",
"fmt": "prettier --write .",
"dev": "tsup --watch",
"clean": "rm -rf build coverage tags",
"start": "yarn build && yarn use && $OPENRCT2_BIN intro",
"style": "prettier --check .",
"types": "tsc --noEmit"
},
"tsup": {
"entry": [
"benchwarmer.ts"
],
"splitting": false,
"clean": true
},
"files": [
"dist/**"
],
"author": "Tom Scott <[email protected]>",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.2.0",
"@jest/globals": "^29.7.0",
"@swc/core": "1.9.3",
"@types/jest": "29.5.14",
"@typescript-eslint/eslint-plugin": "8.16.0",
"@typescript-eslint/parser": "8.16.0",
"cpy-cli": "5.0.0",
"depcheck": "1.4.7",
"eslint": "9.15.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jest": "28.9.0",
"husky": "9.1.7",
"jest": "29.7.0",
"lint-staged": "15.2.10",
"prettier": "3.4.1",
"ts-jest": "29.2.5",
"tsup": "8.3.5",
"typescript": "5.6.3"
},
"repository": {
"type": "git",
"url": "https://github.com/tubbo/openrct2-benchwarmer.git"
},
"packageManager": "[email protected]",
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"setupFiles": [
"<rootDir>/mocks/openrct2.js"
]
}
}