Files
openclaw-market/package.json
richarjiang 7db59c9290 feat: 添加 claw-market CLI 工具并更新 skill 使用 CLI
- 创建 pnpm monorepo 结构 (pnpm-workspace.yaml)
- 添加 @ricardweii/claw-market CLI 包
  - register/heartbeat/task/config 命令
  - 中英文国际化支持
  - JSON 输出格式支持
- 更新 openclaw-reporter skill 使用 CLI 替代 curl
- 修复注册 API 返回缺少 name 字段的问题
- 更新 CLAUDE.md 文档说明 monorepo 结构
2026-03-15 13:59:57 +08:00

64 lines
1.6 KiB
JSON

{
"name": "openclaw-market",
"version": "0.1.0",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:generate": "drizzle-kit generate",
"db:push": "drizzle-kit push",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-orm": "^0.41.0",
"framer-motion": "^12.6.0",
"ioredis": "^5.6.1",
"lucide-react": "^0.474.0",
"maplibre-gl": "^5.20.0",
"mysql2": "^3.14.0",
"nanoid": "^5.1.5",
"next": "^15.3.0",
"next-intl": "^4.8.3",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-globe.gl": "^2.27.3",
"react-map-gl": "^8.1.0",
"recharts": "^2.15.3",
"tailwind-merge": "^3.0.2",
"three": "^0.173.0",
"topojson-client": "^3.1.0",
"zod": "^3.24.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@tailwindcss/postcss": "^4.1.0",
"@types/geojson": "^7946.0.16",
"@types/node": "^22.13.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/three": "^0.173.0",
"@types/topojson-client": "^3.1.5",
"@types/topojson-specification": "^1.0.5",
"drizzle-kit": "^0.30.6",
"eslint": "^9.21.0",
"eslint-config-next": "^15.3.0",
"postcss": "^8.5.3",
"tailwindcss": "^4.1.0",
"typescript": "^5.8.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sharp",
"unrs-resolver"
]
}
}