-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.14 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
{
"name": "asshat-pixi",
"version": "1.0.0",
"description": "A base project for browser games",
"scripts": {
"serve": "parcel src/index.html --open",
"build": "npm run gen:sounds -- --build && npm run gen:music -- --build && parcel build --public-url ./ src/index.html",
"watch-gen:assets": "concurrently npm:gen:*",
"gen:textures": "generate-textures assets/images src/typedAssets/textures.ts",
"gen:sounds": "generate-howls assets/sounds .converted/sounds src/typedAssets/sounds.ts",
"gen:music": "generate-howls assets/music .converted/music src/typedAssets/musics.ts --dontPreload"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hubol/asshat-pixi.git"
},
"author": "Hubol Persson-Gordon",
"homepage": "https://github.com/hubol/asshat-pixi#readme",
"devDependencies": {
"@types/howler": "^2.2.1",
"concurrently": "^5.3.0",
"generate-howls": "^0.2.5",
"generate-textures": "^0.1.2",
"parcel-bundler": "^1.12.4",
"typescript": "^4.1.2"
},
"dependencies": {
"howler": "^2.2.1",
"pissant": "^0.1.2",
"pixi-filters": "^3.2.0",
"pixi.js": "^5.3.3"
}
}