-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2 KB
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
74
75
76
77
78
79
{
"name": "t3d",
"version": "0.5.3",
"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/*.html",
"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": "^9.25.1",
"eslint-plugin-html": "^8.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsdoc": "^61.5.0",
"globals": "^17.0.0",
"jsdoc": "^4.0.2",
"qunit": "^2.24.1",
"rollup": "^4.9.1",
"servez": "^2.1.1"
},
"scripts": {
"start": "npm run dev",
"test": "npm run lint && npm run test-unit",
"b": "npm run build",
"build": "rollup -c",
"build-module": "rollup -c --configOnlyModule",
"dev": "rollup -c -w",
"server": "servez -p 8080 --ssl",
"doc": "jsdoc -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/**/*.html\"",
"lint-examples-fix": "eslint \"examples/**/*.html\" --fix",
"lint-tests": "eslint tests",
"test-unit": "qunit tests/unit/source.unit.js"
}
}