-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.22 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
76
77
{
"name": "foursmith-vr",
"type": "module",
"version": "0.2.6",
"private": true,
"author": {
"url": "https://github.com/ourongxing/",
"email": "orongxing@gmail.com",
"name": "ourongxing"
},
"license": "MPL-2.0",
"homepage": "https://github.com/foursmith/vr",
"workspaces": {
"packages": [
"cli"
],
"catalog": {
"@typescript/native-preview": "^7.0.0-dev.20260707.2"
}
},
"scripts": {
"dev": "vite --host",
"build": "vite build",
"lint": "eslint .",
"prepare": "simple-git-hooks",
"preview": "bun run build && wrangler dev",
"typecheck": "tsgo --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "bun run test --coverage",
"test:e2e": "bun run --bun playwright test",
"test:all": "bun run typecheck && bun run test && bun run test:e2e",
"dev:cli": "bun run --filter fsvr dev",
"build:cli": "bun run --filter fsvr build",
"typecheck:cli": "bun run --filter fsvr typecheck",
"test:cli": "bun run --filter fsvr test",
"release": "bumpp --recursive --install --all --git-check",
"deploy": "bun run build && wrangler deploy --env \"\"",
"deploy:production": "bun run build && wrangler deploy --env production"
},
"dependencies": {
"@mediapipe/tasks-vision": "^0.10.35",
"@msvargas97/pico.js": "1.0.2",
"@solid-primitives/i18n": "3.0.0-next.3",
"@solidjs/web": "2.0.0-beta.20",
"solid-js": "2.0.0-beta.20",
"three": "^0.185.1"
},
"devDependencies": {
"@antfu/eslint-config": "^9.1.0",
"@iconify-json/ph": "^1.2.2",
"@playwright/test": "^1.61.1",
"@types/three": "^0.185.0",
"@typescript/native-preview": "catalog:",
"@unocss/reset": "^66.7.5",
"@vitest/coverage-v8": "^4.1.10",
"bumpp": "^11.1.0",
"eslint": "^10.6.0",
"fake-indexeddb": "^6.2.5",
"jsdom": "^29.1.1",
"lint-staged": "^17.0.8",
"simple-git-hooks": "^2.13.1",
"typescript": "^6.0.3",
"unocss": "^66.7.5",
"vite": "^8.1.3",
"vite-plugin-pwa": "^1.3.0",
"vite-plugin-solid": "^3.0.0-next.5",
"vitest": "^4.1.10",
"wrangler": "^4.110.0"
},
"simple-git-hooks": {
"pre-commit": "bunx lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}