-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
41 lines (41 loc) · 845 Bytes
/
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
{
"name": "fourwastaken",
"version": "0.4.1",
"description": "Minimal three.js alternative.",
"keywords": [
"3d",
"graphics",
"compute",
"webgl",
"webgpu",
"webxr",
"shaders",
"three",
"minimal"
],
"author": "Cody Bennett (https://github.com/CodyJasonBennett)",
"homepage": "https://github.com/CodyJasonBennett/four",
"repository": "https://github.com/CodyJasonBennett/four",
"license": "MIT",
"files": [
"dist/*",
"src/*"
],
"type": "module",
"main": "./dist/index.js",
"exports": "./dist/index.js",
"sideEffects": false,
"devDependencies": {
"@types/node": "^20.8.7",
"typescript": "^5.2.2",
"vite": "^4.5.0"
},
"dependencies": {
"@webgpu/types": "^0.1.38"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "tsc"
}
}