generated from Basssiiie/OpenRCT2-Simple-Typescript-Template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.23 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.23 KB
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
{
"name": "openrct2-food-prefs-plugin",
"authors": [
"Brianna Rainey <tassaron>"
],
"version": "1.0",
"type": "module",
"license": "GPL-3.0-only",
"scripts": {
"start": "nodemon --watch ./src --ext js,ts --exec \"npm run build:dev\"",
"build": "rollup --config rollup.config.js --environment BUILD:production",
"build:dev": "rollup --config rollup.config.js",
"build:tests": "rollup --config rollup.config.js --environment BUILD:testing",
"openrct2": "../../OpenRCT2/build/openrct2 ./src/__tests__/test.park --headless",
"test": "npm run build:tests && concurrently --raw -k \"npm run openrct2\" \"sleep 5s && exit\""
},
"dependencies": {
"openrct2-flexui": "^0.1.0-prerelease.20"
},
"devDependencies": {
"@jest/globals": "^30.2.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^6.0.3",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"@types/jest": "^30.0.0",
"concurrently": "^9.2.1",
"nodemon": "^2.0.22",
"rollup": "^3.15.0",
"ts-jest": "^29.4.6",
"tslib": "^2.5.0",
"typescript": "^5.9.3"
}
}