-
Notifications
You must be signed in to change notification settings - Fork 828
/
Copy pathpackage.json
50 lines (50 loc) · 1.67 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
{
"name": "@google/model-viewer-render-fidelity-tools",
"type": "module",
"private": true,
"version": "0.0.1",
"description": "<model-viewer> rendering fidelity test suite and tools",
"scripts": {
"test": "node --experimental-modules ./lib/workflows/test-fidelity.js --config=./test/config.json",
"test:ci": "echo \"CI fidelity tests have a separate run\" && exit 0",
"render-goldens": "node --experimental-modules ./lib/workflows/render-goldens.js --config=./test/config.json",
"build": "tsc && rollup -c",
"prepare": "if [ ! -L './shared-assets' ]; then ln -s ../shared-assets ./shared-assets; fi",
"clean": "rm -rf ./dist ./lib ./test/results ./test/renderers/filament/{cmgen,ktx}"
},
"contributors": [
"Chris Joel <[email protected]>",
"Emmett Lalish <[email protected]>",
"Jaixin Sun <[email protected]>"
],
"license": "Apache-2.0",
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"@actions/core": "^1.2.4",
"@google/model-viewer": "^4.0.0",
"@polymer/paper-button": "^3.0.1",
"@polymer/paper-radio-group": "^3.0.1",
"@polymer/paper-slider": "^3.0.1",
"@types/http-server": "^0.10.0",
"@types/pngjs": "^3.4.0",
"http-server": "^14.1.1",
"lit": "^3.2.1",
"mkdirp": "^3.0.1",
"pngjs": "^7.0.0",
"puppeteer": "^23.4.0",
"rimraf": "^6.0.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^6.0.1",
"@types/yargs": "^17.0.29",
"polymer-build": "^3.1.4",
"rollup": "^4.24.0",
"rollup-plugin-external-globals": "^0.12.0",
"typescript": "5.6.3"
}
}