@loontail/minecraft-kit 0.2.0 → 0.4.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@loontail/minecraft-kit",
3
- "version": "0.2.0",
3
+ "version": "0.4.0",
4
4
  "description": "Stateless TypeScript Minecraft launcher library and interactive CLI for vanilla, Fabric, and modern Forge.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -8,7 +8,7 @@
8
8
  "type": "git",
9
9
  "url": "git+https://github.com/loontail/minecraft-kit.git"
10
10
  },
11
- "homepage": "https://github.com/loontail/minecraft-kit#readme",
11
+ "homepage": "https://loontail.github.io/minecraft-kit/",
12
12
  "bugs": {
13
13
  "url": "https://github.com/loontail/minecraft-kit/issues"
14
14
  },
@@ -38,14 +38,26 @@
38
38
  "bin": {
39
39
  "mckit": "./dist/cli/index.js"
40
40
  },
41
- "files": [
42
- "dist",
43
- "README.md",
44
- "LICENSE"
45
- ],
41
+ "files": ["dist", "README.md", "LICENSE"],
46
42
  "engines": {
47
43
  "node": ">=20.11"
48
44
  },
45
+ "scripts": {
46
+ "build": "tsup",
47
+ "dev": "tsup --watch",
48
+ "lint": "biome check ./src ./tests",
49
+ "lint:fix": "biome check --write ./src ./tests",
50
+ "format": "biome format --write ./src ./tests",
51
+ "typecheck": "tsc --noEmit",
52
+ "test": "vitest run",
53
+ "test:watch": "vitest",
54
+ "test:coverage": "vitest run --coverage",
55
+ "docs:api": "typedoc",
56
+ "docs:dev": "npm run docs:api && vitepress dev docs-site",
57
+ "docs:build": "npm run docs:api && vitepress build docs-site",
58
+ "docs:preview": "vitepress preview docs-site",
59
+ "prepare": "husky"
60
+ },
49
61
  "dependencies": {
50
62
  "@clack/prompts": "^0.7.0",
51
63
  "lru-cache": "^10.4.3",
@@ -69,20 +81,5 @@
69
81
  "typescript": "~5.4.5",
70
82
  "vitepress": "^1.2.3",
71
83
  "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
84
  }
88
- }
85
+ }