-
Notifications
You must be signed in to change notification settings - Fork 820
/
package.json
53 lines (53 loc) · 1.77 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
{
"name": "model-viewer-packages",
"private": true,
"description": "The repository for all <model-viewer> packages",
"scripts": {
"test": "npm run test --workspaces",
"test:ci": "npm run test:ci --workspaces",
"format": "find packages/**/src -name '*.ts' | grep -v .d.ts | xargs ./node_modules/.bin/clang-format --verbose -i",
"lint": "./node_modules/.bin/eslint \"packages/**/*.ts\"",
"lint:fix": "npm run lint -- --fix",
"clean": "npm run clean --workspaces",
"build": "npm run build --workspaces",
"serve": "./node_modules/.bin/http-server -c-1",
"update:package-lock": "npm exec -y --workspaces -- npx rimraf package-lock.json node_modules && npx rimraf package-lock.json node_modules && npm install --save && npm run clean --workspaces && node ./scripts/postinstall.js"
},
"husky": {
"hooks": {
"pre-commit": "./scripts/pre-commit.sh"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/google/model-viewer.git"
},
"workspaces": [
"packages/model-viewer",
"packages/model-viewer-effects",
"packages/modelviewer.dev",
"packages/render-fidelity-tools",
"packages/space-opera"
],
"author": "DevXR Contributors",
"license": "Apache-2.0",
"engines": {
"node": ">=12.0.0"
},
"bugs": {
"url": "https://github.com/google/model-viewer/issues"
},
"homepage": "https://github.com/google/model-viewer#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"clang-format": "^1.8.0",
"eslint": "^8.20.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-wc": "^1.3.0",
"http-server": "^14.1.1",
"husky": "^7.0.1",
"typescript": "5.6.3"
}
}