-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·36 lines (36 loc) · 1.02 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
{
"name": "webgpu-aquarium",
"version": "0.0.1",
"description": "webgpu-aquarium is a WebGPU implementation of WebGL Aquarium.",
"repository": {
"type": "git",
"url": "git+https://github.com/samdauwe/webgpu-aquarium.git"
},
"keywords": [
"webgpu",
"typescript"
],
"author": "Sam Dauwe <[email protected]>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/samdauwe/webgpu-aquarium/issues"
},
"homepage": "https://github.com/samdauwe/webgpu-aquarium#readme",
"scripts": {
"start": "npm i && npm run build && npm run dev",
"dev": "webpack-dev-server --hot --config build/webpack.config.js",
"build": "webpack --config build/webpack.config.js"
},
"dependencies": {
"dat.gui": "^0.7.7"
},
"devDependencies": {
"@webgpu/types": "^0.0.30",
"http-server": "^0.12.3",
"ts-loader": "^7.0.0",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
}
}