-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.95 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) · 2.95 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "threejs-debug-view",
"version": "0.2.15",
"description": "Batteries-included TSL debug views for Three.js WebGPU render pipelines.",
"license": "MIT",
"type": "module",
"packageManager": "pnpm@10.24.0",
"sideEffects": false,
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/index.js"
},
"./r3f": {
"types": "./dist/types/r3f.d.ts",
"import": "./dist/r3f.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"assets/logo.svg",
"LICENSE",
"README.md"
],
"scripts": {
"dev": "vite --host 0.0.0.0 --port 3000",
"preview": "vite preview --host 0.0.0.0 --port 3000",
"build": "pnpm build:lib && pnpm build:types",
"build:demo": "vite build --config vite.demo.config.ts",
"build:demo:docs": "vite build --config vite.demo.config.ts --base /threejs-debug-view/demo/ --outDir packages/docs/public/demo --emptyOutDir",
"build:lib": "vite build",
"build:types": "tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:e2e": "playwright test",
"verify": "pnpm typecheck && pnpm test && pnpm build && pnpm pack:check && pnpm docs:build",
"pack:check": "node scripts/check-pack-contents.mjs",
"prepublishOnly": "pnpm typecheck && pnpm test && pnpm build && pnpm pack:check",
"docs:dev": "pnpm --filter @threejs-debug-view/docs dev",
"docs:build": "pnpm --filter @threejs-debug-view/docs build",
"docs:preview": "pnpm --filter @threejs-debug-view/docs preview"
},
"peerDependencies": {
"@react-three/drei": ">=10",
"@react-three/fiber": ">=9",
"leva": ">=0.10",
"react": ">=19",
"react-dom": ">=19",
"three": ">=0.184"
},
"peerDependenciesMeta": {
"@react-three/drei": {
"optional": true
},
"@react-three/fiber": {
"optional": true
},
"leva": {
"optional": true
},
"react": {
"optional": true
},
"react-dom": {
"optional": true
}
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"@react-three/drei": "10.7.7",
"@react-three/fiber": "9.6.1",
"@types/node": "25.9.1",
"@types/react": "19.2.15",
"@types/react-dom": "19.2.3",
"@types/three": "0.184.1",
"@vitejs/plugin-react": "6.0.2",
"leva": "0.10.1",
"react": "19.2.6",
"react-dom": "19.2.6",
"three": "0.184.0",
"typescript": "6.0.3",
"vite": "8.0.14",
"vitest": "^4.1.7"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tonyblu331/threejs-debug-view.git"
},
"bugs": {
"url": "https://github.com/tonyblu331/threejs-debug-view/issues"
},
"homepage": "https://github.com/tonyblu331/threejs-debug-view#readme",
"keywords": [
"threejs",
"webgpu",
"tsl",
"debug",
"rendering"
],
"publishConfig": {
"access": "public"
}
}