-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.45 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
49
50
{
"name": "gltf2parser",
"version": "0.0.2",
"author": "Pedro Sousa ( Vor @ SketchPunk Labs )",
"description": "Parse GLTF2 Files",
"keywords": [
"gltf",
"webgl",
"mesh"
],
"license": "MIT",
"homepage": "https://github.com/sketchpunklabs/gltf2parser#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/sketchpunklabs/gltf2parser.git"
},
"bugs": {
"url": "https://github.com/sketchpunklabs/gltf2parser/issues"
},
"files": [
"dist"
],
"main": "./dist/gltf2parser.cjs.js",
"module": "./dist/gltf2parser.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/gltf2parser.es.js",
"require": "./dist/gltf2parser.cjs.js"
}
},
"scripts": {
"dev": "vite",
"build": "vite build",
"build:types": "tsc --declaration --noEmit false --emitDeclarationOnly --strict false --outDir ./dist",
"build:site": "vite build --mode site",
"pack": "npm pack",
"preview-site": "vite preview",
"lint": "eslint . --ext .ts"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"eslint": "^8.10.0",
"three": "^0.138.2",
"typescript": "^4.6.2",
"vite": "^2.8.6",
"vite-plugin-list-directory-contents": "^1.4.5"
}
}