-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.04 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.04 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@enginehub/schematicwebviewer",
"version": "5.0.1",
"description": "A web viewer for modern Minecraft schematics",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist/"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"scripts": {
"clean": "rm -rf dist",
"build": "yarn tsdown",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "yarn parcel test/test.html --port 3000 --host 0.0.0.0",
"type-check": "yarn tsc --noEmit",
"lint": "yarn eslint src/",
"postinstall": "yarn husky",
"precommit": "yarn lint-staged",
"prepack": "pinst --disable && yarn build",
"postpack": "pinst --enable"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EngineHub/SchematicWebViewer.git"
},
"author": "EngineHub",
"license": "MIT",
"bugs": {
"url": "https://github.com/EngineHub/SchematicWebViewer/issues"
},
"homepage": "https://github.com/EngineHub/SchematicWebViewer#readme",
"dependencies": {
"@babylonjs/core": "^8.42.0",
"@enginehub/nbt-ts": "^1.3.5",
"@enginehub/schematicjs": "^0.10.0",
"buffer": "^6.0.3",
"deepmerge": "^4.3.1",
"gzip-js": "^0.3.2",
"jszip": "^3.10.1"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/gzip-js": "^0.3.5",
"eslint": "^9.39.2",
"globals": "^16.5.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"parcel": "^2.16.3",
"pinst": "^3.0.0",
"prettier": "^3.7.4",
"tsdown": "^0.18.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.50.0"
},
"browserslist": [
"last 1 Chrome version"
],
"alias": {
"process": false
},
"sideEffects": false,
"packageManager": "yarn@4.12.0"
}