This repository was archived by the owner on Feb 4, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
90 lines (90 loc) · 2.11 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "suitcasejs",
"version": "3.2.3",
"author": "TBroz15",
"repository": {
"type": "git",
"url": "https://github.com/TBroz15/SuitcaseJS.git"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"main": "./dist/index.js",
"devDependencies": {
"@eslint/js": "^9.8.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.0",
"@types/adm-zip": "^0.5.5",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.8.7",
"@types/picomatch": "^3.0.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.14.0",
"semantic-release": "^24.2.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.12.2"
},
"bin": {
"suitcasejs": "/dist/cli/index.js",
"suitcase": "/dist/cli/index.js",
"sjs": "/dist/cli/index.js"
},
"bugs": {
"url": "https://github.com/TBroz15/SuitcaseJS/issues"
},
"description": "State of the art Minecraft Bedrock Behavior and Resource Pack Compiler.",
"homepage": "https://github.com/TBroz15/SuitcaseJS#readme",
"keywords": [
"minecraft",
"json",
"compression",
"compiler",
"minify",
"zip",
"bedrock",
"compress",
"bedrock-edition",
"mcpack",
"pack-compiler"
],
"license": "MIT",
"scripts": {
"build": "tsc",
"test": "tsc && node ./dist/cli/index.js",
"semantic-release": "semantic-release --branches main",
"commit": "pnpx git-cz",
"lint": "node ci/lint"
},
"type": "module",
"dependencies": {
"@clack/prompts": "^0.7.0",
"adm-zip": "^0.5.15",
"fdir": "^6.3.0",
"fdir-size": "^1.0.3",
"mri": "^1.2.0",
"nanospinner": "^1.1.0",
"picocolors": "^1.0.1",
"sharp": "^0.33.4",
"strip-ansi": "^7.1.0"
},
"optionalDependencies": {
"js-yaml": "^4.1.0",
"picomatch": "^3 || ^4"
},
"peerDependencies": {
"js-yaml": "^4.1.0",
"picomatch": "^3 || ^4"
},
"peerDependenciesMeta": {
"js-yaml": {
"optional": true
},
"picomatch": {
"optional": true
}
},
"packageManager": "[email protected]"
}