-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 783 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 783 Bytes
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
{
"name": "openrct2-worldpainter",
"version": "1.0.1",
"description": "OpenRCT2 WorldPainter Plug-In",
"author": "Sadret",
"type": "module",
"license": "GPL-3.0",
"scripts": {
"build-develop": "rollup -c rollup.config.develop.js",
"build-release": "rollup -c rollup.config.release.js",
"convert-png": "node ./convert-png.js"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.1.1",
"clipboardy": "^4.0.0",
"rollup": "^3.17.2",
"sharp": "^0.33.4",
"tslib": "^2.5.2",
"typescript": "^5.0.4"
},
"dependencies": {
"openrct2-flexui": "^0.1.0-prerelease.12"
}
}