This repository was archived by the owner on Feb 9, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.49 KB
/
package.json
File metadata and controls
59 lines (59 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
{
"name": "openrct2-name-generator",
"version": "0.1.2",
"main": "app.js",
"license": "MIT",
"author": "rolfhermancoen",
"type": "module",
"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",
"gettypes": "curl https://raw.githubusercontent.com/OpenRCT2/OpenRCT2/develop/distribution/openrct2.d.ts > lib/openrct2.d.ts",
"lint": "eslint",
"lint:fix": "eslint --fix",
"test": "nyc ava"
},
"devDependencies": {
"@ava/typescript": "4.0.0",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.6.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"ava": "5.2.0",
"eslint": "^9.6.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"globals": "^15.8.0",
"nodemon": "^3.1.4",
"nyc": "15.1.0",
"openrct2-mocks": "^0.1.6",
"prettier": "^3.3.2",
"rollup": "^3.15.0",
"tslib": "^2.5.0",
"tsx": "3.12.6",
"typescript": "^5.5.3"
},
"ava": {
"extensions": {
"ts": "module"
},
"files": [
"tests/**/*.test.ts"
],
"nodeArguments": [
"--loader=tsx"
],
"require": [
"./tests/_setup.cjs"
],
"verbose": true
},
"dependencies": {
"openrct2-flexui": "^0.1.0-prerelease.0"
}
}