-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.19 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
{
"name": "react-webgpu-context",
"version": "0.1.2",
"description": "React context and hook to use WebGPU",
"scripts": {
"build": "vite build"
},
"type": "module",
"types": "dist/src/index.d.ts",
"main": "dist/react-webgpu-context.umd.cjs",
"module": "dist/react-webgpu-context.cjs",
"exports": {
".": {
"import": "./dist/react-webgpu-context.esm.js",
"require": "./dist/react-webgpu-context.umd.cjs"
}
},
"files": [
"/dist"
],
"projectType": "library",
"repository": {
"type": "git",
"url": "git+https://github.com/kubohiroya/react-webgpu-context.git"
},
"homepage": "https://github.com/kubohiroya/react-webgpu-context",
"keywords": [
"React",
"WebGPU",
"React Context",
"hook"
],
"author": {
"name": "Hiroya Kubo",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@vitejs/plugin-react": "^4.3.4",
"@webgpu/types": "^0.1.52",
"prettier": "^2.8.8",
"typescript": "~5.4.5",
"vite": "~5.4.11"
}
}