-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
32 lines (32 loc) · 1.1 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
{
"name": "PixiJS-Bunnymark",
"version": "1.0.0",
"description": "A little benchmark and test Pixi v8 renderer",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npx esbuild src/index.ts --outfile=dist/js/index.js --bundle --loader:.wgsl=text --loader:.vert=text --loader:.frag=text --watch",
"build": "npx esbuild src/index.ts --outdir=dist/js --bundle --splitting --loader:.wgsl=text --loader:.vert=text --loader:.frag=text --minify --tree-shaking=true --metafile=meta.json --format=esm",
"serve": "npx http-server ./dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GoodBoyDigital/webGPU-test.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/GoodBoyDigital/webGPU-test/issues"
},
"homepage": "https://github.com/GoodBoyDigital/webGPU-test#readme",
"dependencies": {
"pixi-v7": "npm:pixi.js@^7.3.1",
"pixi-v8": "npm:pixi.js@^8.4.1",
"pixi.js": "^8.4.1"
},
"devDependencies": {
"esbuild": "^0.15.13",
"http-server": "^14.1.1",
"ts": "^0.2.2"
}
}