-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 1.32 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
{
"name": "openrct2-peep-editor",
"author": "Manticore-007",
"license": "MIT",
"version": "23.11.29",
"description": "",
"main": "app.js",
"scripts": {
"start": "npm run watch",
"watch": "nodemon --watch ./src --ext js,ts",
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Manticore-007/OpenRCT2-PeepEditor.git"
},
"homepage": "https://github.com/Manticore-007/OpenRCT2-PeepEditor#readme",
"bugs": {
"url": "https://github.com/Manticore-007/OpenRCT2-PeepEditor/issues"
},
"devDependencies": {
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-typescript": "^8.2.5",
"@typescript-eslint/eslint-plugin": "5.4",
"@typescript-eslint/parser": "5.54",
"eslint": "8.3",
"eslint-plugin-import": "^2.24.0",
"nodemon": "^2.0.12",
"platform-folders": "^0.6.0",
"rollup": "^2.79.1",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.3.1",
"typescript": "^4.3.5"
},
"dependencies": {
"openrct2-flexui": "^0.1.0-prerelease.8"
}
}