-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.49 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.49 KB
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
{
"name": "flock-webgpu",
"version": "2.0.0",
"type": "module",
"description": "Flock Behavior Simulation rendered with WebGPU Compute Shaders",
"scripts": {
"test": "vitest",
"test:run": "vitest run",
"start": "npm-run-all --parallel build:watch:dev build:watch:prod serve",
"build:prod": "cross-env NODE_ENV=production rollup -c",
"build:dev": "cross-env NODE_ENV=development rollup -c",
"build": "npm-run-all build:dev build:prod",
"build:watch:dev": "cross-env NODE_ENV=development rollup -c -w",
"build:watch:prod": "cross-env NODE_ENV=production rollup -c -w",
"serve": "browser-sync start -s -f build/**/*"
},
"main": "index.js",
"homepage": "https://github.com/aurbano/flock-webgl",
"repository": "git@github.com:aurbano/flock-webgl.git",
"author": "Alejandro U. Alvarez <aluralma@gmail.com>",
"license": "AGPL-3",
"private": true,
"dependencies": {
"@webgpu/types": "^0.1.49",
"dat.gui": "^0.7.9",
"stats.js": "^0.17.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-typescript": "^11.1.6",
"@types/dat.gui": "^0.7.13",
"@types/stats.js": "^0.17.3",
"browser-sync": "^3.0.2",
"cross-env": "^7.0.3",
"npm-run-all": "^4.1.5",
"rollup": "^4.9.6",
"rollup-plugin-string": "^3.0.0",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"vitest": "^4.0.16",
"webgpu": "^0.3.8"
}
}