-
Notifications
You must be signed in to change notification settings - Fork 918
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.25 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.25 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
{
"name": "@google/model-viewer-docs",
"type": "module",
"private": true,
"version": "0.0.1",
"description": "<model-viewer> web site and live documentation",
"scripts": {
"test": "echo \"No tests specified\" && exit 0",
"test:ci": "npm test",
"clean": "rm -rf ./examples/built ./lib ./dist",
"build": "tsc && rollup -c",
"prepare": "if [ ! -L './shared-assets' ]; then ln -s ../shared-assets ./shared-assets; fi"
},
"contributors": [
"Jordan Santell <jsantell@google.com>",
"Chris Joel <cdata@google.com>",
"Emmett Lalish <elalish@google.com>",
"Ricardo Cabello <ricardocabello@google.com>",
"Matt Small <mbsmall@google.com>",
"Yuin Chien <yuin@google.com>",
"Diego Teran <dteran@google.com>"
],
"license": "Apache-2.0",
"engines": {
"node": ">=6.0.0"
},
"dependencies": {
"@google/model-viewer": "^4.2.0",
"@google/model-viewer-effects": "^1.4.0",
"@types/prismjs": "^1.26.5",
"focus-visible": "^5.2.1",
"lit": "^3.2.1",
"prismjs": "^1.30.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-swc": "^0.4.0",
"@swc/core": "^1.11.8",
"rollup": "^4.59.0",
"typescript": "5.8.2"
}
}