generated from wisnia74/openrct2-typescript-mod-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.39 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
{
"name": "openrct2-CostInflator",
"version": "1.0.0",
"description": "",
"main": "watched-build.js",
"scripts": {
"test": "jest",
"lint": "eslint ./src --ext .js --ext .ts",
"watch": "nodemon --watch ./src --ext js,ts",
"build": "npm run lint && rollup --config rollup.config.prod.js",
"build:dev": "rollup --config rollup.config.dev.js && deploy.bat",
"start": "..\\openrct2.exe.lnk",
"deploy": "deploy.bat",
"clean": "DEL dev-build\\CostInflator.js dist\\CostInflator.js",
"undeploy": "undeploy.bat"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DanStevens/openrct2-CostInflator.git"
},
"author": "DanStevens",
"license": "MIT",
"bugs": {
"url": "https://github.com/DanStevens/openrct2-CostInflator/issues"
},
"homepage": "https://github.com/DanStevens/openrct2-CostInflator#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.4",
"@types/jest": "^28.1.7",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"eslint": "^8.22.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^28.1.3",
"nodemon": "^2.0.19",
"rollup": "^2.78.0",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^28.0.8",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
}
}