-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.38 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": "memepack-builder",
"version": "0.5.0",
"description": "Build memified Minecraft resource pack",
"types": "lib/index.d.ts",
"type": "module",
"files": [
"lib"
],
"exports": "./lib/index.js",
"scripts": {
"watch": "tsc --watch",
"emit-type": "tsc --emitDeclarationOnly",
"bundle": "esbuild src/index.ts --bundle --platform=node --target=node16 --packages=external --outdir=lib",
"build": "pnpm clear && pnpm bundle && pnpm emit-type && api-extractor run --local --verbose && rimraf ./types",
"clear": "rimraf ./lib ./types",
"pretty": "prettier --write src/",
"prepublish": "pnpm build"
},
"author": "MysticNebula70 <[email protected]>",
"repository": "https://github.com/Teahouse-Studios/memepack-builder-ts.git",
"license": "Apache-2.0",
"dependencies": {
"fs-extra": "^11.2.0",
"klaw": "^4.1.0",
"lodash": "^4.17.21",
"yazl": "^3.3.1"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.48.0",
"@types/fs-extra": "^11.0.4",
"@types/klaw": "^3.0.6",
"@types/lodash": "^4.17.13",
"@types/node": "^22.10.1",
"@types/yazl": "^2.4.5",
"esbuild": "^0.24.0",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"typescript": "^5.7.2"
},
"engines": {
"node": "^16.10.0 || >=18.0.0"
},
"keywords": [
"minecraft",
"resourcepack"
],
"packageManager": "[email protected]"
}