@tobylai/qmcli 0.0.5 → 0.0.8

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.
Files changed (3) hide show
  1. package/README.md +6 -3
  2. package/package.json +15 -9
  3. package/dist/qmcli.cjs +0 -115
package/README.md CHANGED
@@ -38,7 +38,7 @@ many features are still working in progress
38
38
  - users
39
39
  - [X] add/remove users
40
40
  - [X] offline users
41
- - [ ] mojang users
41
+ - [ ] mojang users (deprecated?)
42
42
  - [ ] microsoft users
43
43
  - settings
44
44
  - [X] change download mirror
@@ -48,8 +48,11 @@ many features are still working in progress
48
48
  - [ ] change java path
49
49
  - localization
50
50
  - [X] support en(English)
51
- - [ ] support zh_cn(简体中文)
51
+ - [X] support zh_cn(简体中文)
52
52
 
53
53
  ## FAQ
54
54
  ### Why the name?
55
- QMCLI is for **Q**uick **M**ine**C**raft **L**auncher **CL****I**
55
+ QMCLI is for **Q**uick **M**ine**C**raft **L**auncher **CLI**
56
+
57
+ ---
58
+ QMCLI is not an official product [product/service/activity/etc.] of MINECRAFT. It has not been approved by MOJANG or MICROSOFT and is not associated with MOJANG or MICROSOFT.
package/package.json CHANGED
@@ -1,13 +1,14 @@
1
1
  {
2
2
  "name": "@tobylai/qmcli",
3
- "version": "0.0.5",
3
+ "version": "0.0.8",
4
4
  "description": "A quick minecraft launcher command-line interface",
5
5
  "main": "dist/cli.js",
6
6
  "type": "module",
7
7
  "scripts": {
8
- "dev": "npx tsx cli.ts",
9
- "build":"node esbuild.mjs",
10
- "prepublishOnly": "npm run build"
8
+ "dev": "bun cli.ts",
9
+ "build": "bun bun-build.ts cjs",
10
+ "buildexe": "bun bun-build.ts exe local",
11
+ "prepublishOnly": "bun run build"
11
12
  },
12
13
  "keywords": [
13
14
  "minecraft",
@@ -26,15 +27,20 @@
26
27
  "zip-lib": "^1.0.5"
27
28
  },
28
29
  "devDependencies": {
30
+ "@types/bun": "latest",
29
31
  "@types/cli-progress": "^3.11.6",
30
32
  "@types/configstore": "^6.0.2",
31
33
  "@types/node": "^22.13.0",
32
- "esbuild": "^0.24.2",
33
34
  "tsx": "^4.19.2"
34
- },"bin":{
35
- "qmcli":"dist/qmcli.cjs"
36
- },"publishConfig": {
35
+ },
36
+ "bin": {
37
+ "qmcli": "dist/qmcli.cjs"
38
+ },
39
+ "publishConfig": {
37
40
  "registry": "https://registry.npmjs.org/",
38
41
  "access": "public"
42
+ },
43
+ "peerDependencies": {
44
+ "typescript": "^5.0.0"
39
45
  }
40
- }
46
+ }