@loontail/minecraft-kit 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,88 @@
1
+ {
2
+ "name": "@loontail/minecraft-kit",
3
+ "version": "0.2.0",
4
+ "description": "Stateless TypeScript Minecraft launcher library and interactive CLI for vanilla, Fabric, and modern Forge.",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/loontail/minecraft-kit.git"
10
+ },
11
+ "homepage": "https://github.com/loontail/minecraft-kit#readme",
12
+ "bugs": {
13
+ "url": "https://github.com/loontail/minecraft-kit/issues"
14
+ },
15
+ "keywords": [
16
+ "minecraft",
17
+ "launcher",
18
+ "fabric",
19
+ "forge",
20
+ "mojang",
21
+ "java-runtime",
22
+ "cli",
23
+ "typescript"
24
+ ],
25
+ "main": "./dist/index.js",
26
+ "types": "./dist/index.d.ts",
27
+ "exports": {
28
+ ".": {
29
+ "types": "./dist/index.d.ts",
30
+ "default": "./dist/index.js"
31
+ },
32
+ "./cli": {
33
+ "types": "./dist/cli/index.d.ts",
34
+ "default": "./dist/cli/index.js"
35
+ },
36
+ "./package.json": "./package.json"
37
+ },
38
+ "bin": {
39
+ "mckit": "./dist/cli/index.js"
40
+ },
41
+ "files": [
42
+ "dist",
43
+ "README.md",
44
+ "LICENSE"
45
+ ],
46
+ "engines": {
47
+ "node": ">=20.11"
48
+ },
49
+ "dependencies": {
50
+ "@clack/prompts": "^0.7.0",
51
+ "lru-cache": "^10.4.3",
52
+ "lzma": "^2.3.2",
53
+ "p-limit": "^5.0.0",
54
+ "yauzl": "^3.1.3"
55
+ },
56
+ "devDependencies": {
57
+ "@biomejs/biome": "^1.9.4",
58
+ "@commitlint/cli": "^21.0.0",
59
+ "@commitlint/config-conventional": "^21.0.0",
60
+ "@types/node": "^20.11.30",
61
+ "@types/yauzl": "^2.10.3",
62
+ "@vitest/coverage-v8": "^1.6.0",
63
+ "husky": "^9.1.7",
64
+ "lint-staged": "^17.0.4",
65
+ "tsup": "^8.0.2",
66
+ "typedoc": "~0.25.13",
67
+ "typedoc-plugin-markdown": "~4.0.3",
68
+ "typedoc-vitepress-theme": "1.0.0",
69
+ "typescript": "~5.4.5",
70
+ "vitepress": "^1.2.3",
71
+ "vitest": "^1.6.0"
72
+ },
73
+ "scripts": {
74
+ "build": "tsup",
75
+ "dev": "tsup --watch",
76
+ "lint": "biome check ./src ./tests",
77
+ "lint:fix": "biome check --write ./src ./tests",
78
+ "format": "biome format --write ./src ./tests",
79
+ "typecheck": "tsc --noEmit",
80
+ "test": "vitest run",
81
+ "test:watch": "vitest",
82
+ "test:coverage": "vitest run --coverage",
83
+ "docs:api": "typedoc",
84
+ "docs:dev": "pnpm docs:api && vitepress dev docs-site",
85
+ "docs:build": "pnpm docs:api && vitepress build docs-site",
86
+ "docs:preview": "vitepress preview docs-site"
87
+ }
88
+ }