forked from KhronosGroup/glTF-Sample-Viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.54 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
{
"name": "@khronosgroup/gltf-viewer",
"version": "1.0.3",
"description": "The official glTF sample viewer.",
"main": "dist/gltf-viewer.js",
"module": "dist/gltf-viewer.module.js",
"repository": {
"type": "git",
"url": "git+https://github.com/KhronosGroup/glTF-Sample-Viewer.git"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"prepare": "npm run build && npm run build_docs",
"build_docs": "rm API.md; ./node_modules/.bin/jsdoc2md source/gltf-sample-viewer.js source/GltfView/gltf_view.js source/GltfState/gltf_state.js source/ResourceLoader/resource_loader.js source/gltf/user_camera.js > API.md",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src/**/*.js",
"lint:fix": "eslint --fix src/**/*.js",
"postversion": "git push && git push --tags"
},
"keywords": [
"gltf",
"webgl",
"pbr"
],
"author": "Khronos Group Inc.",
"license": "Apache-2.0",
"dependencies": {
"axios": "^0.21.1",
"fast-png": "^5.0.3",
"gl-matrix": "^3.2.1",
"jpeg-js": "^0.4.3"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.1.0",
"concurrently": "^5.1.0",
"eslint": "^6.8.0",
"jsdoc-to-markdown": "^6.0.1",
"rollup": "^2.37.0",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-glslify": "^1.2.0",
"serve": "^11.3.0"
},
"bugs": {
"url": "https://github.com/KhronosGroup/glTF-Sample-Viewer/issues"
},
"homepage": "https://github.com/KhronosGroup/glTF-Sample-Viewer/#readme"
}