Sets up the initial project structure: two packages (@kitchen-md/core and @kitchen-md/bin), shared tsconfig, shared fixtures, per-package test stubs (unit, integration, smoke), .gitignore, and project CLAUDE.md with Conventional Commits convention.
13 lines
216 B
JSON
13 lines
216 B
JSON
{
|
|
"name": "kitchen-md",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"workspaces": ["packages/core", "packages/bin"],
|
|
"scripts": {
|
|
"test": "bun test"
|
|
},
|
|
"devDependencies": {
|
|
"bun-types": "latest"
|
|
}
|
|
}
|