-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
49 lines (49 loc) · 1.36 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
{
"name": "webgpu-gltf-viewer",
"version": "1.0.0",
"description": "a glTF 2.0 viewer using WebGPU API",
"private": true,
"scripts": {
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack serve",
"build": "webpack --mode production",
"deploy": "gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JiyuHuang/webgpu-gltf-viewer.git"
},
"keywords": [
"WebGPU",
"glTF 2.0"
],
"author": "Jiyu Huang",
"license": "MIT",
"bugs": {
"url": "https://github.com/JiyuHuang/webgpu-gltf-viewer/issues"
},
"homepage": "https://github.com/JiyuHuang/webgpu-gltf-viewer#readme",
"dependencies": {
"gl-matrix": "^3.4.3",
"stats.js": "^0.17.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"@webgpu/types": "^0.1.7",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"gh-pages": "^3.2.3",
"html-webpack-plugin": "^5.5.0",
"prettier": "^2.4.1",
"ts-loader": "^9.2.6",
"typescript": "^4.4.4",
"webpack": "^5.64.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.5.0"
}
}