-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 938 Bytes
/
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
{
"name": "voxgl",
"version": "0.0.1",
"description": "A voxel sandbox with Webgl.",
"main": "dist/voxgl.js",
"module": "dist/voxgl.esm.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup -c --environment BUILD:production",
"prebuild": "rm -rf dist",
"start": "rollup --watch -c --environment BUILD:development --sourcemap",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kurtil/voxgl.git"
},
"keywords": [
"3d",
"voxel",
"webgl"
],
"author": "Kurtil",
"license": "ISC",
"bugs": {
"url": "https://github.com/Kurtil/voxgl/issues"
},
"homepage": "https://github.com/Kurtil/voxgl#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^7.1.1",
"rollup": "^2.2.0",
"rollup-plugin-terser": "^5.3.0"
},
"dependencies": {
"gl-matrix": "^3.3.0"
}
}