-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.49 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
53
54
55
56
57
58
{
"name": "@bubblejs/bubble",
"description": "A 3D Rendering Engine based on WebGPU",
"author": "RE_OVO",
"repository": {
"type": "git",
"url": "https://github.com/re-ovo/bubble"
},
"license": "MIT",
"version": "0.0.1",
"type": "module",
"files": [
"./dist"
],
"main": "./dist/bubble.js",
"module": "./dist/bubble.js",
"exports": {
".": {
"import": "./dist/bubble.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"dev": "tsc && vite",
"start": "vite --host --open",
"build": "tsc && vite build",
"build:types": "dts-bundle-generator --config ./dts-bundle-generator.config.ts",
"test": "vitest",
"publish": "npm run build && npm publish --access public"
},
"dependencies": {
"@dimforge/rapier3d": "^0.14.0",
"@loaders.gl/core": "^4.3.1",
"@loaders.gl/gltf": "^4.3.1",
"uuid": "^11.0.2",
"webgpu-utils": "^1.9.3",
"wgpu-matrix": "^3.2.0",
"wgsl_reflect": "^1.0.13"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@tweakpane/core": "^2.0.5",
"@types/jsdom": "^21.1.7",
"@types/node": "^20.14.5",
"@vitest/browser": "^2.1.2",
"@webgpu/types": "^0.1.48",
"npm-run-all": "^4.1.5",
"playwright": "^1.48.0",
"tweakpane": "^4.0.5",
"typescript": "~5.4.0",
"vite": "^5.3.1",
"vite-plugin-circular-dependency": "^0.5.0",
"vite-plugin-dts": "^4.3.0",
"vite-plugin-ignore-public": "^0.0.3",
"vitest": "^2.1.2",
"vue-tsc": "^2.0.21"
}
}