-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.51 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
{
"name": "r3f-webgpu-text",
"version": "1.0.2",
"description": "MSDF WebGPU text components for React Three Fiber.",
"keywords": [
"react",
"three",
"webgpu",
"r3f",
"text",
"msdf",
"react-three-fiber"
],
"author": "Anderson Mancini",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ektogamat/r3f-webgpu-text.git"
},
"homepage": "https://r3f-webgpu-text.vercel.app",
"bugs": {
"url": "https://github.com/ektogamat/r3f-webgpu-text/issues"
},
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"sideEffects": false,
"scripts": {
"dev": "vite",
"build": "BUILD_LIB=true vite build && node scripts/generate-types.mjs",
"build:demo": "vite build",
"deploy": "vercel --prod",
"prepublishOnly": "npm run build"
},
"dependencies": {
"r3f-webgpu-perf": "^0.1.4",
"three-msdf-text-utils": "^1.2.1"
},
"peerDependencies": {
"@react-three/fiber": ">=8.0",
"react": ">=18.0",
"react-dom": ">=18.0",
"three": ">=0.172.0"
},
"devDependencies": {
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.6.1",
"@vitejs/plugin-react": "^4.3.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"three": "^0.184.0",
"vercel": "^54.20.1",
"vite": "^5.4.0"
}
}