-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 971 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 971 Bytes
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": "@grinstead/ambush",
"version": "0.0.18",
"license": "LGPL-2.1-only",
"homepage": "https://github.com/grinstead/ambush#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/grinstead/ambush.git"
},
"bugs": "https://github.com/grinstead/ambush/issues",
"type": "module",
"files": [
"dist"
],
"main": "./dist/ambush.umd.cjs",
"module": "./dist/ambush.js",
"types": "./dist/ambush.d.ts",
"exports": {
".": {
"import": "./dist/ambush.js",
"require": "./dist/ambush.umd.cjs"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"prepublishOnly": "bun run build",
"preview": "vite preview"
},
"dependencies": {
"@grinstead/webgpu": "^0.1.0",
"solid-js": "^1.8.15"
},
"devDependencies": {
"@webgpu/types": "^0.1.40",
"typescript": "^5.2.2",
"vite": "^5.2.0",
"vite-plugin-dts": "^3.9.1",
"vite-plugin-solid": "^2.10.2"
}
}