forked from bridge-core/model-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.02 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
{
"name": "@skinbookmc/model-viewer",
"version": "1.2.1",
"description": "A fast parser for Minecraft's Molang",
"directories": {
"lib": "lib"
},
"scripts": {
"build:types": "tsc --project tsconfig.json",
"build": "vite build && npm run build:types",
"dev": "vite dev ./playground"
},
"files": [
"dist"
],
"main": "./dist/model-viewer.umd.js",
"module": "./dist/model-viewer.es.js",
"types": "./dist/main.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/main.d.ts",
"default": "./dist/model-viewer.es.js"
},
"require": {
"types": "./dist/main.d.ts",
"default": "./dist/model-viewer.umd.js"
}
}
},
"author": "solvedDev",
"license": "MIT",
"bugs": {
"url": "https://github.com/bridge-core/model-viewer/issues"
},
"homepage": "https://github.com/bridge-core/model-viewer#readme",
"devDependencies": {
"@types/three": "^0.147.0",
"typescript": "^4.3.5",
"vite": "^4.4.9"
},
"dependencies": {
"molang": "^2.0.1",
"three": "^0.147.0",
"wintersky": "^1.3.0"
}
}