-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.18 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
{
"name": "openrct2-litter-editor",
"author": "Enox",
"license": "MIT",
"version": "1.1",
"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/EnoxRCT/OpenRCT2-LitterEditor.git"
},
"homepage": "https://github.com/EnoxRCT/OpenRCT2-LitterEditor#readme",
"bugs": {
"url": "https://github.com/EnoxRCT/OpenRCT2-LitterEditor/issues"
},
"devDependencies": {
"@rollup/plugin-replace": "^3.0.0",
"@rollup/plugin-typescript": "^8.2.5",
"@typescript-eslint/eslint-plugin": "5.4",
"@typescript-eslint/parser": "5.4",
"eslint": "8.3",
"eslint-plugin-import": "^2.24.0",
"nodemon": "^2.0.12",
"rollup": "^2.56.2",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.3.1",
"typescript": "^4.3.5"
}
}