-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.25 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.25 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
{
"name": "fuhopack",
"version": "1.0.0",
"description": "Bundle your packs",
"main": "scripts/pack.ts",
"directories": {
"lib": "lib"
},
"scripts": {
"build": "bun run clean && bun run decals && bun scripts/pack.ts patch && bun run mkmeta",
"mkmeta": "bun scripts/mmeta.ts",
"decals": "bun decals.ts",
"clean": "rm assets/decals/*/* -rf",
"fmt": "biome check . --write",
"build:exe": "bun build decals.ts --minify --sourcemap --compile --outfile=decals.exe",
"pack": "bun scripts/pack.ts",
"pack:full": "bun scripts/pack.ts full",
"pack:dev": "bun scripts/pack.ts pdev"
},
"author": "hUwUtao",
"license": "MIT",
"dependencies": {
"@biomejs/biome": "^1.9.4",
"archiver": "^7.0.1",
"pngquant-bin": "^9.0.0",
"sharp": "^0.33.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Team-Fuho/resourcepack.git"
},
"keywords": ["minecraft", "resourcepack", "bundler"],
"bugs": {
"url": "https://github.com/Team-Fuho/resourcepack/issues"
},
"homepage": "https://github.com/Team-Fuho/resourcepack#readme",
"devDependencies": {
"@types/archiver": "^6.0.3",
"bun-types": "^1.2.10",
"typescript": "^5.8.3",
"@types/bun": "latest"
},
"private": true
}