-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.21 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
{
"name": "ride-price-manager",
"version": "1.3.2",
"description": "Ride Price Manager is a plugin for OpenRCT2 that automagically updates the prices of all your rides",
"main": "app.js",
"scripts": {
"start": "npm run watch",
"watch": "nodemon --watch ./src --ext js,ts",
"build": "npm run lint && rollup --config rollup.config.prod.js",
"build:dev": "rollup --config rollup.config.dev.js",
"lint": "eslint ./src --ext .js --ext .ts"
},
"author": "mgovea",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mgovea/openrct2-ride-price-manager.git"
},
"bugs": {
"url": "https://github.com/mgovea/openrct2-ride-price-manager/issues"
},
"homepage": "https://github.com/mgovea/openrct2-ride-price-manager#readme",
"devDependencies": {
"@rollup/plugin-typescript": "^8.2.5",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"eslint": "^7.31.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"nodemon": "^2.0.12",
"rollup": "^2.55.1",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.3.0",
"typescript": "^4.3.5"
},
"dependencies": {}
}