-
Notifications
You must be signed in to change notification settings - Fork 65
/
package.json
66 lines (66 loc) · 2.16 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
{
"name": "model-viewer",
"version": "5.0.1",
"author": "PlayCanvas<[email protected]>",
"homepage": "https://playcanvas.com",
"description": "PlayCanvas glTF Viewer",
"keywords": [
"2d",
"3d",
"html5",
"gltf",
"webgl",
"webgl2",
"viewer"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/playcanvas/model-viewer/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/playcanvas/model-viewer.git"
},
"devDependencies": {
"@playcanvas/eslint-config": "^2.0.7",
"@playcanvas/observer": "^1.5.1",
"@playcanvas/pcui": "^4.6.0",
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-image": "^3.0.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^6.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"concurrently": "^9.1.0",
"cross-env": "^7.0.3",
"eslint": "^9.14.0",
"eslint-import-resolver-typescript": "^3.6.3",
"globals": "^15.12.0",
"playcanvas": "^2.2.2",
"qrious": "^4.0.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-visibility-sensor": "^5.1.1",
"rollup": "^4.24.4",
"rollup-plugin-sass": "^1.14.0",
"serve": "^14.2.4",
"tslib": "^2.8.1",
"typescript": "^5.6.3"
},
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"serve": "serve dist",
"develop": "cross-env concurrently --kill-others \"npm run watch\" \"npm run serve\"",
"develop:local": "cross-env ENGINE_PATH=../engine npm run develop",
"build:local": "cross-env ENGINE_PATH=../engine npm run build",
"watch:local": "cross-env ENGINE_PATH=../engine npm run watch",
"lint": "eslint src"
}
}