-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.25 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
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "fuhopack",
"version": "1.0.0",
"description": "Bundle your packs",
"main": "gulpfile.js",
"directories": {
"lib": "lib"
},
"scripts": {
"build": "npm run clean && npm run decals && npm run pack && npm run mkmeta",
"pack:deno": "deno run --allow-env --allow-read --allow-write --allow-sys --allow-run --allow-ffi npm:gulp patch",
"pack": "bun ./node_modules/gulp/bin/gulp.js patch",
"mkmeta": "bun run scripts/mmeta.ts",
"decals": "bun run decals.ts",
"clean": "git clean -fdx assets/decals",
"fmt": "biome check . --apply"
},
"author": "hUwUtao",
"license": "MIT",
"dependencies": {
"async": "^3.2.6",
"del": "^8.0.0",
"gulp": "^4.0.0",
"gulp-zip": "^6.0.0",
"imagescript": "^1.3.0"
},
"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/async": "^3.2.24",
"@types/gulp": "^4.0.17",
"@types/gulp-zip": "^4.0.4",
"bun-types": "*"
},
"trustedDependencies": [
"es5-ext"
]
}