mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-07-21 23:14:02 +00:00
25 lines
577 B
JSON
25 lines
577 B
JSON
{
|
|
"name": "@craft-agent/cli",
|
|
"version": "0.0.1",
|
|
"license": "Apache-2.0",
|
|
"description": "Terminal client for Qwen Code server",
|
|
"type": "module",
|
|
"main": "src/index.ts",
|
|
"bin": {
|
|
"craft-cli": "src/index.ts"
|
|
},
|
|
"scripts": {
|
|
"start": "bun run src/index.ts",
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "bun test src/"
|
|
},
|
|
"dependencies": {
|
|
"@craft-agent/shared": "workspace:*",
|
|
"@craft-agent/server-core": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.8.2",
|
|
"@types/node": "^22.0.0",
|
|
"@types/bun": "latest"
|
|
}
|
|
}
|