-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.01 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
{
"name": "oktaeder",
"version": "0.1.0",
"description": "3D rendering library for WebGPU",
"keywords": [
"3d",
"gltf",
"wegbpu"
],
"homepage": "https://github.com/iszn11/oktaeder",
"bugs": {
"url": "https://github.com/iszn11/oktaeder/issues"
},
"license": "MPL-2.0",
"browser": "./dist/oktaeder.js",
"repository": {
"type": "git",
"url": "https://github.com/iszn11/oktaeder.git"
},
"scripts": {
"start:example": "esbuild example/script.ts --bundle --outfile=example/bundle.js --watch --servedir=example --format=esm --sourcemap",
"build": "tsc --build"
},
"dependencies": {
"tslib": "^2.6.1"
},
"devDependencies": {
"@webgpu/types": "^0.1.34",
"esbuild": "^0.19.2",
"typescript": "5.1.6"
},
"exports": {
".": {
"types": "./dist/oktaeder.d.ts",
"import": "./dist/oktaeder.js"
},
"./data": {
"types": "./dist/data/index.d.ts",
"import": "./dist/data/index.js"
},
"./resources": {
"types": "./dist/resources/index.d.ts",
"import": "./dist/resources/index.js"
}
}
}