skillhub/cli/package.json
dongmucat 6ee746d371 chore(cli): bump version to 0.1.9
Signed-off-by: dongmucat <1127093059@qq.com>
2026-07-22 17:35:05 +08:00

65 lines
1.6 KiB
JSON

{
"name": "@astron-team/skillhub",
"version": "0.1.9",
"description": "Manage and install skills for AI coding agents",
"keywords": [
"skillhub",
"ai",
"coding-agent",
"skills",
"cli"
],
"homepage": "https://github.com/iflytek/skillhub#readme",
"bugs": {
"url": "https://github.com/iflytek/skillhub/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/iflytek/skillhub.git",
"directory": "cli"
},
"license": "Apache-2.0",
"author": "iFLYTEK",
"type": "module",
"packageManager": "bun@1.3.13",
"bin": {
"skillhub": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"prebuild": "bun run scripts/generate-pkg-info.ts",
"build": "bun build src/index.ts --target=node --outfile=dist/index.js",
"pretest": "bun run scripts/generate-pkg-info.ts",
"test": "bun test",
"pretypecheck": "bun run scripts/generate-pkg-info.ts",
"typecheck": "tsc --noEmit",
"prelint": "bun run scripts/generate-pkg-info.ts",
"lint": "eslint src test --ext .ts"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"cac": "^6.7.14",
"fflate": "^0.8.2",
"prompts": "^2.4.2",
"semver": "^7.6.3",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/bun": "^1.3.13",
"@types/prompts": "^2.4.9",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"typescript": "^5.7.0"
},
"engines": {
"node": ">=18.0.0"
}
}