generated from wisnia74/openrct2-typescript-mod-template
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
60 lines (60 loc) · 1.52 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
{
"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 ./src --ext .js --ext .ts",
"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.15"
},
"devDependencies": {
"@ava/typescript": "^4.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"ava": "^5.1.0",
"eslint": "^8.1.0",
"eslint-plugin-import": "^2.24.0",
"nodemon": "^3.0.1",
"nyc": "^15.1.0",
"openrct2-mocks": "^0.1.0",
"rollup": "^4.6.0",
"tslib": "^2.3.1",
"tsx": "^4.19.0",
"typescript": "^5.0.2"
},
"ava": {
"extensions": {
"ts": "module"
},
"files": [
"tests/**/*.tests.ts"
],
"nodeArguments": [
"--import=tsx"
],
"require": [
"./tests/_setup.cjs"
],
"verbose": true,
"workerThreads": false
}
}