-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.07 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.07 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
{
"name": "@niivue/glb-loader",
"private": true,
"version": "1.0.0",
"type": "module",
"exports": {
".": {
"import": "./src/lib/loader.js"
}
},
"files": [
"src/lib/loader.js"
],
"keywords": [
"glb",
"gltf",
"loader",
"mesh",
"niivue"
],
"author": "NiiVue developers",
"license": "BSD-2-Clause",
"description": "A 3DS3 mesh loader to be used with the NiiVue useLoader method",
"scripts": {
"cli": "node ./src/glb2mz3.js ./tests/testData/mesh.glb",
"dev": "vite",
"build:demo": "vite build",
"build": "vite build",
"preview": "vite preview",
"test": "vitest",
"pretty": "prettier --write \"**/*.js\"",
"pub": "npm run build && npm publish --access public"
},
"devDependencies": {
"@niivue/niivue": "^0.65.0",
"vite": "^6.0.5",
"vitest": "^3.1.3",
"prettier": "^3.7.4"
},
"dependencies": {
"@gltf-transform/core": "^4.2.1",
"@gltf-transform/extensions": "^4.2.1",
"@gltf-transform/functions": "^4.2.1",
"draco3dgltf": "^1.5.7",
"meshoptimizer": "^0.25.0"
}
}