-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
73 lines (73 loc) · 1.83 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
71
72
73
{
"name": "t3d",
"version": "0.3.1",
"description": "t3d.js is a lightweight, web-first, and extendable 3D rendering library.",
"type": "module",
"main": "./build/t3d.js",
"module": "./build/t3d.module.js",
"exports": {
".": "./build/t3d.module.js",
"./src/*": "./src/*",
"./examples/jsm/*": "./examples/jsm/*",
"./addons/*": "./examples/jsm/*"
},
"repository": {
"type": "git",
"url": "https://github.com/uinosoft/t3d.js"
},
"files": [
"build",
"examples/jsm",
"LICENSE",
"package.json",
"README.md",
"src"
],
"keywords": [
"t3d",
"t3d.js",
"javascript",
"3d",
"virtual-reality",
"augmented-reality",
"webgl",
"webgl2",
"webxr",
"canvas",
"html5"
],
"author": "uino",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/uinosoft/t3d.js/issues"
},
"devDependencies": {
"@babel/core": "^7.19.1",
"@babel/preset-env": "^7.19.1",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-terser": "^0.4.0",
"clean-jsdoc-theme": "^4.2.13",
"eslint": "^8.24.0",
"eslint-plugin-html": "^8.0.0",
"eslint-plugin-import": "^2.28.1",
"jsdoc": "^4.0.2",
"rollup": "^4.9.1",
"servez": "^2.1.1"
},
"scripts": {
"default": "npm run dev",
"start": "npm run dev",
"b": "npm run build",
"build": "rollup -c",
"build-module": "rollup -c --configOnlyModule",
"dev": "rollup -c -w",
"server": "servez -p 8080 --ssl",
"doc": "jsdoc --readme ./README.md ./src -r -d ./docs -c ./tools/doc.config.json",
"lint": "eslint src",
"lint-fix": "eslint src --fix",
"lint-addons": "eslint examples/jsm",
"lint-addons-fix": "eslint examples/jsm --fix",
"lint-examples": "eslint examples --ext .html",
"lint-examples-fix": "eslint examples --ext .html --fix"
}
}