- Merge packages/types into packages/cook/src/types - Add CLI search command with ingredient alias support - Add build config (unbuild) and GitHub Actions publish workflow - Add Cook Skill documentation (SKILL.md, README.md) - Update all imports from @cook/types to @yunyoujun/cook - Bump @nuxt/test-utils 4.0.0 → 4.0.2, update lastDbUpdated
62 lines
1.4 KiB
JSON
62 lines
1.4 KiB
JSON
{
|
|
"name": "@yunyoujun/cook",
|
|
"type": "module",
|
|
"version": "0.1.0",
|
|
"description": "Cook CLI - 食用手册命令行工具,菜谱检索/数据管理",
|
|
"author": "YunYouJun <me@yunyoujun.cn>",
|
|
"license": "MIT",
|
|
"homepage": "https://github.com/YunYouJun/cook/tree/main/packages/cook#readme",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/YunYouJun/cook.git",
|
|
"directory": "packages/cook"
|
|
},
|
|
"bugs": "https://github.com/YunYouJun/cook/issues",
|
|
"keywords": [
|
|
"cook",
|
|
"recipe",
|
|
"cli",
|
|
"菜谱",
|
|
"食谱"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.mts",
|
|
"import": "./dist/index.mjs"
|
|
}
|
|
},
|
|
"main": "./dist/index.mjs",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.mts",
|
|
"bin": {
|
|
"cook": "./dist/cli.mjs"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "unbuild",
|
|
"cook": "tsx src/cli.ts",
|
|
"fetch": "tsx src/cli.ts fetch",
|
|
"convert": "tsx src/cli.ts convert",
|
|
"search": "tsx src/cli.ts search",
|
|
"prepublishOnly": "pnpm run build"
|
|
},
|
|
"dependencies": {
|
|
"@clack/prompts": "^1.2.0",
|
|
"@larksuiteoapi/node-sdk": "^1.60.0",
|
|
"cac": "^7.0.0",
|
|
"consola": "^3.4.2",
|
|
"papaparse": "^5.5.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^25.5.2",
|
|
"@types/papaparse": "^5.5.2",
|
|
"tsx": "^4.21.0",
|
|
"unbuild": "^3.6.1"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|