client-finder/package.json

25 lines
738 B
JSON
Raw Permalink Normal View History

2026-03-11 23:36:43 +00:00
{
"name": "client-finder",
"version": "1.0.0",
"description": "Client finder with query expansion using skill-credit + ecom flow",
"type": "module",
"main": "src/index.ts",
"scripts": {
"run": "bun run scripts/run.ts",
"test": "bun run scripts/test.ts",
"build": "bun build scripts/run.ts --outfile dist/run.js --target bun",
"build:binary": "bun build scripts/run.ts --compile --outfile dist/run",
"install-skill": "bun install && bun run build"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.0.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@clawd/auth-runtime": "git+http://192.168.0.108:3030/agent-skills/auth-runtime.git"
2026-03-11 23:36:43 +00:00
}
}