chore: update package version and dependencies

- Bump version from 0.1.1 to 0.1.2 in package.json
- Update dependencies:
  - @kevisual/js-filter from ^0.0.5 to ^0.0.6
  - @opencode-ai/plugin from ^1.2.24 to ^1.2.26
  - @types/node from ^25.4.0 to ^25.5.0
  - hono from ^4.12.7 to ^4.12.8
  - Add crypto-js and es-toolkit as new dependencies
- Remove unused AddOpts import in src/app.ts
- Enhance commander.ts to support remote application connection
- Modify route.ts to use hashIdMd5Sync for ID generation
- Add hashIdMd5Sync function in utils/random.ts for deterministic ID generation
This commit is contained in:
xiongxiao
2026-03-15 04:59:42 +08:00
committed by cnb
parent e18233fdcb
commit 151586f98c
6 changed files with 227 additions and 166 deletions

View File

@@ -1,7 +1,7 @@
{
"$schema": "https://json.schemastore.org/package",
"name": "@kevisual/router",
"version": "0.1.1",
"version": "0.1.2",
"description": "",
"type": "module",
"main": "./dist/router.js",
@@ -25,34 +25,39 @@
"@kevisual/code-builder": "^0.0.6",
"@kevisual/context": "^0.0.8",
"@kevisual/dts": "^0.0.4",
"@kevisual/js-filter": "^0.0.5",
"@kevisual/js-filter": "^0.0.6",
"@kevisual/local-proxy": "^0.0.8",
"@kevisual/query": "^0.0.53",
"@kevisual/remote-app": "^0.0.7",
"@kevisual/use-config": "^1.0.30",
"@opencode-ai/plugin": "^1.2.24",
"@opencode-ai/plugin": "^1.2.26",
"@types/bun": "^1.3.10",
"@types/node": "^25.4.0",
"@types/crypto-js": "^4.2.2",
"@types/node": "^25.5.0",
"@types/send": "^1.2.1",
"@types/ws": "^8.18.1",
"@types/xml2js": "^0.4.14",
"commander": "^14.0.3",
"crypto-js": "^4.2.0",
"es-toolkit": "^1.45.1",
"eventemitter3": "^5.0.4",
"fast-glob": "^3.3.3",
"hono": "^4.12.7",
"hono": "^4.12.8",
"nanoid": "^5.1.6",
"path-to-regexp": "^8.3.0",
"send": "^1.2.1",
"typescript": "^5.9.3",
"ws": "npm:@kevisual/ws",
"xml2js": "^0.6.2",
"zod": "^4.3.6"
"xml2js": "^0.6.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abearxiong/kevisual-router.git"
},
"dependencies": {
"es-toolkit": "^1.45.1"
"crypto-js": "^4.2.0",
"es-toolkit": "^1.45.1",
"zod": "^4.3.6"
},
"publishConfig": {
"access": "public"