-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
70 lines (70 loc) · 1.59 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "zen-3d",
"version": "0.0.4",
"description": "JavaScript 3D library",
"main": "build/zen3d.js",
"jsnext:main": "build/zen3d.module.js",
"module": "build/zen3d.module.js",
"repository": {
"type": "git",
"url": "https://github.com/shawn0326/zen-3d"
},
"files": [
"build/zen3d.js",
"build/zen3d.min.js",
"build/zen3d.module.js",
"examples/js",
"examples/jsm",
"LICENSE",
"package.json",
"README.md",
"src"
],
"directories": {
"doc": "docs",
"example": "examples",
"test": "test"
},
"keywords": [
"zen3d",
"zen-3d",
"javascript",
"3d",
"virtual-reality",
"augmented-reality",
"webgl",
"webgl2",
"webvr",
"webxr",
"canvas",
"html5"
],
"author": "shawn0326",
"license": "MIT",
"bugs": {
"url": "https://github.com/shawn0326/zen-3d/issues"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@rollup/plugin-babel": "^5.3.0",
"acorn": "^8.1.0",
"eslint": "^7.22.0",
"jsdoc": "^3.6.6",
"live-server": "^1.2.1",
"rollup": "^2.42.2",
"rollup-plugin-terser": "^7.0.2"
},
"scripts": {
"default": "rollup -c",
"b": "rollup -c",
"build": "rollup -c",
"doc": "jsdoc ./src/core -r -d ./docs -c ./tools/doc.config.json",
"eslint": "eslint src/core",
"eslint-fix": "eslint src/core --fix",
"eslint-examples": "eslint examples/js",
"eslint-examples-fix": "eslint examples/js --fix",
"example": "live-server --port=8080 --open=examples --watch=examples,build"
}
}