-
Notifications
You must be signed in to change notification settings - Fork 241
/
Copy pathpackage.json
84 lines (84 loc) · 2.48 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
74
75
76
77
78
79
80
81
82
83
84
{
"name": "gltf-sample-viewer-example",
"version": "1.0.0",
"description": "The official glTF sample viewer example.",
"main": "src/main.js",
"module": "src/main.js",
"type": "module",
"scripts": {
"preinstall": "cd ./glTF-Sample-Renderer && npm install && npm run build",
"build": "cd ./glTF-Sample-Renderer && npm run build && cd .. && rollup -c",
"build:ui": "rollup -c",
"dev": "concurrently \"npm-watch\" \"cd ./dist && http-server -p 8000 -c-1\"",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src/**/*.js main.js rollup.config.js glTF-Sample-Renderer/source/**/*.js",
"lint:fix": "eslint --fix src/**/*.js main.js rollup.config.js glTF-Sample-Renderer/source/**/*.js",
"postversion": "git push && git push --tags"
},
"watch": {
"build": {
"patterns": [
"glTF-Sample-Renderer/source"
],
"extensions": "js,scss,html,glsl,vert,frag",
"delay": 1000
},
"build:ui": {
"patterns": [
"src",
"main.js",
"index.html"
],
"extensions": "js,scss,html",
"delay": 1000,
"runOnChangeOnly": true
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/KhronosGroup/glTF-Sample-Viewer.git"
},
"keywords": [
"gltf",
"webgl",
"pbr"
],
"author": "Khronos Group Inc.",
"license": "Apache-2.0",
"dependencies": {
"@khronosgroup/gltf-viewer": "./glTF-Sample-Renderer",
"@ntohq/buefy-next": "^0.1.3",
"bulma": "^0.9.4",
"fast-png": "^6.2.0",
"gl-matrix": "^3.2.1",
"gltf-validator": "^2.0.0-dev.3.10",
"jpeg-js": "^0.4.3",
"normalize-wheel": "^1.0.1",
"path": "^0.12.7",
"rxjs": "^6.6.7",
"simple-dropzone": "^0.8.0",
"vue": "^3.4.29"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.7",
"@rollup/plugin-wasm": "^6.2.2",
"concurrently": "^8.2.2",
"eslint": "^9.5.0",
"http-server": "^14.1.1",
"npm-watch": "^0.13.0",
"rollup": "^4.23.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-glslify": "^1.3.1",
"rollup-plugin-license": "^3.5.1",
"rollup-plugin-scss": "^3.0.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"sass": "^1.77.5"
},
"bugs": {
"url": "https://github.com/KhronosGroup/glTF-Sample-Viewer/issues"
},
"homepage": "https://github.com/KhronosGroup/glTF-Sample-Viewer/#readme"
}