generated from wisnia74/openrct2-typescript-mod-template
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.49 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.49 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
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
{
"name": "openrct2-ride-vehicle-editor",
"author": "Basssiiie",
"license": "MIT",
"version": "1.0.0",
"type": "module",
"scripts": {
"start": "nodemon --watch ./src --ext js,ts --exec \"npm run build:dev\"",
"build": "npm run lint && rollup --config rollup.config.js --environment BUILD:production",
"build:dev": "rollup --config rollup.config.js",
"lint": "eslint",
"test": "nyc ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Basssiiie/OpenRCT2-RideVehicleEditor.git"
},
"homepage": "https://github.com/Basssiiie/OpenRCT2-RideVehicleEditor#readme",
"bugs": {
"url": "https://github.com/Basssiiie/OpenRCT2-RideVehicleEditor/issues"
},
"dependencies": {
"openrct2-flexui": "0.1.0-prerelease.20"
},
"devDependencies": {
"@ava/typescript": "6.0.0",
"@eslint/js": "9.32.0",
"@rollup/plugin-node-resolve": "16.0.1",
"@rollup/plugin-replace": "6.0.2",
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "12.1.4",
"@stylistic/eslint-plugin": "5.2.2",
"@types/eslint__js": "8.42.3",
"ava": "6.4.1",
"eslint": "9.32.0",
"nodemon": "3.1.10",
"nyc": "17.1.0",
"openrct2-mocks": "0.1.6",
"rollup": "4.46.2",
"tslib": "2.8.1",
"tsx": "4.20.3",
"typescript": "5.8.3",
"typescript-eslint": "8.38.0"
},
"ava": {
"extensions": {
"ts": "module"
},
"files": [
"tests/**/*.tests.ts"
],
"nodeArguments": [
"--import=tsx"
],
"require": [
"./tests/_setup.cjs"
],
"verbose": true,
"workerThreads": false
}
}