-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
55 lines (55 loc) · 1.4 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
51
52
53
54
55
{
"name": "openvdb",
"version": "0.3.0",
"description": "This project indirectly ports OpenVDB file format and tools to JavaScript, TypeScript, and Node. Specific 3D library implementations can be found in sub-directories.",
"main": "./index.js",
"exports": {
".": "./index.js",
"./three": "./three/index.js"
},
"directories": {
"three": "src/three"
},
"keywords": [
"openvdb",
"vdb",
"threejs",
"babylonjs",
"webgl",
"houdini",
"fluid"
],
"scripts": {
"build": "rollup --config ./rollup.config.js && cd build && npm pack",
"build:examples": "cd examples && npm run build",
"dev": "cd examples && npm run dev",
"publish": "npm run build && cd ./build && npm publish"
},
"author": {
"name": "mjurczyk",
"url": "https://discourse.threejs.org/u/mjurczyk"
},
"contributors": [
{
"name": "mjurczyk",
"url": "https://discourse.threejs.org/u/mjurczyk"
},
{
"name": "notchris",
"url": "https://discourse.threejs.org/u/notchris"
}
],
"license": "MIT",
"peerDependencies": {
"three": "^0.153.0"
},
"devDependencies": {
"@lopatnov/rollup-plugin-uglify": "^2.1.5",
"@rollup/plugin-node-resolve": "^14.1.0",
"rollup": "^2.79.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"stats.js": "^0.17.0"
}
}