amai 0.0.21 → 0.0.23

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,7 +1,7 @@
1
1
  {
2
2
  "name": "amai",
3
3
  "type": "module",
4
- "version": "0.0.21",
4
+ "version": "0.0.23",
5
5
  "description": "ama cli",
6
6
  "keywords": [
7
7
  "ama",
@@ -15,7 +15,7 @@
15
15
  "repository": {
16
16
  "type": "git"
17
17
  },
18
- "prepare": "bun run build",
18
+ "prepare": "npm run build",
19
19
  "bin": {
20
20
  "amai": "./dist/cli.js"
21
21
  },
@@ -43,17 +43,18 @@
43
43
  "dev": "tsup --watch",
44
44
  "build": "rm -rf dist && NODE_ENV=production tsup",
45
45
  "typecheck": "tsc --noEmit",
46
- "prepublishOnly": "bun run build",
47
- "install-global": "bun run build && npm link || bun link"
46
+ "prepublishOnly": "npm run build",
47
+ "install-global": "npm run build && npm link"
48
48
  },
49
49
  "devDependencies": {
50
- "@types/bun": "latest",
50
+ "@types/node": "^25.0.1",
51
51
  "@types/ws": "^8.18.1"
52
52
  },
53
53
  "peerDependencies": {
54
54
  "typescript": "^5"
55
55
  },
56
56
  "dependencies": {
57
+ "@ama/agent": "workspace:*",
57
58
  "@hono/node-server": "^1.19.7",
58
59
  "hono": "^4.10.7",
59
60
  "picocolors": "^1.1.1",
@@ -64,5 +65,8 @@
64
65
  },
65
66
  "publishConfig": {
66
67
  "access": "public"
68
+ },
69
+ "engines": {
70
+ "node": "^24.8.0"
67
71
  }
68
- }
72
+ }