-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.56 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": "fast-vixel",
"version": "1.0.0",
"description": "an improved version of wwwtyro's vixel, mainly to speed up the rendering speed and reduce memory usage.",
"main": "build/FastVixel.js",
"types": "build/esm/index.d.ts",
"scripts": {
"build": "rm -rf build && npm run ts:build && npm run webpack:build",
"start": "budo -d docs ./start.js:docs/bundle.js --live",
"ts:build": "tsc --project ./scripts/tsconfig.build.json",
"webpack:watch": "webpack -w --env.production --mode=development",
"webpack:build": "webpack -p --env.production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Francis-Tao-jinjin/fast-vixel.git"
},
"keywords": [
"webgl",
"gl",
"voxel",
"vixel",
"fast vixel",
"path tracing"
],
"author": "francis Tao jinjin",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Francis-Tao-jinjin/fast-vixel/issues"
},
"homepage": "https://github.com/Francis-Tao-jinjin/fast-vixel#readme",
"devDependencies": {
"@types/node": "^8.10.38",
"@types/tape": "^4.2.32",
"budo": "^11.6.0",
"glslify": "^7.1.1",
"glslify-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"raw-loader": "^1.0.0",
"ts-loader": "^7.0.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"gl-matrix": "^3.3.0",
"mouse-wheel": "^1.2.0",
"regl": "^1.6.1",
"tape": "^4.9.1",
"ts-node": "^7.0.1",
"tsify": "^4.0.1",
"tslint": "^5.20.1",
"typescript": "^3.7.4",
"typescript-tslint-plugin": "^0.1.0"
}
}