-
Notifications
You must be signed in to change notification settings - Fork 107
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.12 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.12 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
{
"name": "@playcanvas/model-viewer",
"version": "5.9.0",
"author": "PlayCanvas<support@playcanvas.com>",
"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.1.0",
"@playcanvas/observer": "1.7.1",
"@playcanvas/pcui": "5.5.0",
"@rollup/plugin-alias": "6.0.0",
"@rollup/plugin-commonjs": "29.0.0",
"@rollup/plugin-image": "3.0.3",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "16.0.3",
"@rollup/plugin-replace": "6.0.3",
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "12.1.4",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@typescript-eslint/eslint-plugin": "8.55.0",
"@typescript-eslint/parser": "8.55.0",
"concurrently": "9.2.1",
"cross-env": "10.1.0",
"eslint": "9.39.2",
"eslint-import-resolver-typescript": "4.4.4",
"globals": "17.3.0",
"playcanvas": "2.16.1",
"qrious": "4.0.2",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-intersection-observer": "10.0.2",
"rollup": "4.57.1",
"rollup-plugin-sass": "1.15.3",
"serve": "14.2.5",
"tslib": "2.8.1",
"typescript": "5.9.3"
},
"scripts": {
"build": "rollup -c",
"develop": "cross-env BUILD_TYPE=debug concurrently --kill-others \"npm run watch\" \"npm run serve\"",
"lint": "eslint src rollup.config.mjs eslint.config.mjs",
"lint:fix": "eslint src rollup.config.mjs eslint.config.mjs --fix",
"serve": "serve --cors dist",
"watch": "rollup -c -w"
},
"engines": {
"node": ">=18.0.0"
}
}