-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.24 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
{
"name": "snowcapped",
"version": "0.1.0",
"description": "CLI/API for Snowcapped, a multinoise biome editor for Minecraft.",
"private": false,
"scripts": {
"build": "vite build",
"createZips": "python scripts/createVanillaZips.py",
"dev": "vite serve",
"preview": "vite preview --outDir dist-web",
"buildApi": "vite build --config vite.config.api.ts"
},
"bin": {
"snowcapped-cli": "bin/snowcapped-cli.mjs"
},
"files": [
"bin/",
"dist-api/"
],
"keywords": [],
"author": "Jochen Jacobs",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.4",
"@types/d3": "^7.0.0",
"@types/geojson": "^7946.0.8",
"@types/leaflet": "^1.7.5",
"@types/lodash": "^4.14.172",
"@types/uniqid": "^5.3.1",
"@types/wicg-file-system-access": "^2020.9.4",
"buffer": "^6.0.3",
"d3": "^7.1.1",
"jszip": "^3.10.1",
"leaflet": "^1.7.1",
"mc-datapack-loader": "0.3.1",
"sweetalert2": "^11.4.24",
"tilelayer-canvas": "^1.1.3",
"typescript": "^4.4.3",
"vite": "^4.4.9",
"vite-plugin-dts": "^3.6.0",
"vite-plugin-pwa": "^0.16.5"
},
"dependencies": {
"commander": "^11.0.0",
"deepslate": "^0.14.0-beta.1",
"uniqid": "^5.4.0"
}
}