This repository has been archived on 2026-06-01. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
pulse/package.json
T
xiaomo 1fb6178efa chore: migrate package manager from bun to pnpm
- Add pnpm-workspace.yaml for monorepo workspace
- Add root package.json with packageManager field
- Add .npmrc with shamefully-hoist=true
- Replace bun.lock with pnpm-lock.yaml
- Use workspace:* protocol for @uncaged/pulse dependency
- Update init.ts scaffold to use pnpm install
- Update CLI commands (tick/dev/deploy) to use pnpm/npx
- Update E2E test comments to reference pnpm
- Keep bun as TS runtime (bun:sqlite, bun:test still needed)

closes #19
2026-04-14 14:31:45 +00:00

13 lines
251 B
JSON

{
"name": "pulse-monorepo",
"private": true,
"packageManager": "pnpm@10.33.0",
"scripts": {
"lint": "biome check packages/",
"lint:fix": "biome check --write packages/"
},
"devDependencies": {
"@biomejs/biome": "^2.4.11"
}
}