-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.63 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.63 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
68
69
70
71
72
73
74
75
{
"name": "iwer-monorepo",
"description": "Javascript WebXR Runtime for Emulation - Monorepo",
"private": true,
"type": "module",
"packageManager": "pnpm@10.33.4",
"scripts": {
"build": "pnpm --filter iwer run build",
"build:all": "pnpm --filter iwer run build && pnpm --filter @iwer/devui run build && pnpm --filter @iwer/sem run build",
"build:tgz": "bash ./scripts/build-tgz.sh",
"test": "pnpm --filter iwer run test",
"test:all": "pnpm --filter iwer run test && pnpm test:e2e",
"test:e2e": "pnpm --filter @iwer/e2e exec playwright install chromium && pnpm --filter @iwer/e2e run test",
"typecheck": "pnpm --filter @iwer/e2e run typecheck",
"examples:build": "pnpm build:all && pnpm --dir examples/basic run ci-build && pnpm --dir examples/devui-demo run ci-build",
"verify": "pnpm build:all && pnpm typecheck && pnpm test:all && pnpm lint && pnpm format:check && pnpm changeset:status && pnpm docs:build && pnpm build:tgz && pnpm examples:build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"docs:dev": "pnpm --filter iwer run prebuild && vitepress dev docs",
"docs:build": "pnpm build:all && vitepress build docs",
"docs:preview": "vitepress preview docs",
"lint-staged": "lint-staged",
"prepare": "husky",
"changeset": "changeset",
"changeset:status": "changeset status",
"version": "changeset version && pnpm install --lockfile-only",
"release": "pnpm build:all && changeset publish"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/meta-quest/immersive-web-emulation-runtime.git"
},
"keywords": [],
"author": "Felix Zhang <fe1ix@meta.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/meta-quest/immersive-web-emulation-runtime/issues"
},
"homepage": "https://github.com/meta-quest/immersive-web-emulation-runtime#readme",
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@typescript-eslint/eslint-plugin": "^8.59.2",
"@typescript-eslint/parser": "^8.59.2",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.2",
"prettier": "^3.8.3",
"typescript": "^6.0.3",
"vitepress": "2.0.0-alpha.17"
},
"pnpm": {
"overrides": {
"minimatch": "^10.0.0"
},
"onlyBuiltDependencies": [
"esbuild"
]
},
"engines": {
"node": ">=20.0.0"
}
}