kagaribi 0.1.2 → 0.1.4

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 (2) hide show
  1. package/bin.js +0 -6
  2. package/package.json +3 -4
package/bin.js CHANGED
@@ -1,8 +1,2 @@
1
1
  #!/usr/bin/env node
2
- import { register } from 'node:module';
3
-
4
- // tsx ESMローダーを登録(このファイルからtsxを解決)
5
- register('tsx', import.meta.url);
6
-
7
- // @kagaribi/cli のCLIエントリポイントを実行
8
2
  await import('@kagaribi/cli/bin');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kagaribi",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "description": "Hono-based microservices framework - CLI wrapper",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -24,10 +24,9 @@
24
24
  "cli"
25
25
  ],
26
26
  "engines": {
27
- "node": ">=20.0.0"
27
+ "node": ">=22.6.0"
28
28
  },
29
29
  "dependencies": {
30
- "@kagaribi/cli": "^0.1.0",
31
- "tsx": "^4.0.0"
30
+ "@kagaribi/cli": "0.1.5"
32
31
  }
33
32
  }