Files
code-center/wxmsg/package.json
xiongxiao 9be5eb00f5 chore: update dependencies and remove unused convex package
- Removed "@kevisual/convex" dependency from package.json and pnpm-lock.yaml.
- Updated "ioredis" version from "^5.9.3" to "^5.10.0" in package.json and pnpm-lock.yaml.
- Updated "@kevisual/context", "@kevisual/query", and "@kevisual/router" versions in wxmsg/package.json.
- Updated "@types/node" version in wxmsg/package.json.
- Added resolutions for "ioredis" in wxmsg/package.json.
- Commented out the automatic reply functionality in wxmsg/src/wx/index.ts and added a placeholder message.
2026-03-18 03:24:33 +08:00

43 lines
978 B
JSON

{
"name": "@kevisual/wxmsg",
"version": "0.0.1",
"description": "",
"main": "src/index.ts",
"basename": "/root/wxmsg",
"app": {
"type": "system-app",
"entry": "./app.js",
"runtime": [
"server"
]
},
"scripts": {
"dev": "pnpm dev src/index.ts",
"build": "bun run bun.config.mjs",
"prepub": "rimraf dist && rimraf pack-dist && pnpm build",
"pub": "envision pack -p -u -c"
},
"keywords": [],
"files": [
"dist"
],
"author": "abearxiong <xiongxiao@xiongxiao.me> (https://www.xiongxiao.me)",
"license": "MIT",
"packageManager": "pnpm@10.32.1",
"type": "module",
"dependencies": {
"@kevisual/context": "^0.0.8",
"@kevisual/query": "^0.0.53",
"@kevisual/router": "0.1.4",
"@types/node": "^25.5.0",
"crypto-js": "^4.2.0",
"xml2js": "^0.6.2"
},
"resolutions": {
"ioredis": "^5.10.0"
},
"devDependencies": {
"@types/crypto-js": "^4.2.2",
"@types/xml2js": "^0.4.14"
}
}