generated from Basssiiie/OpenRCT2-Simple-Typescript-Template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.12 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
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "openrct2-dynamicdashboard",
"version": "1.0.0-pre.8",
"type": "module",
"license": "MIT",
"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:silent": "rollup --config rollup.config.js --environment BUILD:production --silent",
"docs": "npx typedoc --entryPointStrategy expand ./src",
"format": "npx prettier --write \"src/**/*.ts\"",
"check-format": "npx prettier --check \"src/**/*.ts\"",
"test": "ava",
"check-missing-locales": "node ./scripts/check-missing-locales.cjs",
"fetch-api-reference": "node ./scripts/fetch-api-reference.cjs",
"fetch-api-reference:master": "SOURCE=master node ./scripts/fetch-api-reference.cjs"
},
"devDependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"ava": "^6.1.3",
"nodemon": "^3.1.4",
"openrct2-mocks": "^0.1.6",
"platform-folders": "^0.6.0",
"prettier": "3.3.3",
"rollup": "^4.21.3",
"tsimp": "^2.0.11",
"tslib": "^2.7.0",
"typedoc": "^0.26.7"
},
"dependencies": {
"@rollup/plugin-replace": "^5.0.7",
"openrct2-flexui": "^0.1.0-prerelease.19"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mrmagic2020/openrct2-dynamicdashboard.git"
},
"homepage": "https://github.com/mrmagic2020/openrct2-dynamicdashboard#readme",
"bugs": {
"url": "https://github.com/mrmagic2020/openrct2-dynamicdashboard/issues"
},
"contributors": [
{
"name": "mrmagic2020",
"url": "https://github.com/mrmagic2020"
},
{
"name": "Basssiiie",
"url": "https://github.com/Basssiiie"
}
],
"ava": {
"extensions": {
"ts": "module"
},
"files": [
"tests/**/*.test.ts"
],
"nodeArguments": [
"--import=tsimp"
],
"require": [
"./tests/_setup.cjs"
]
}
}