a834083a0b
- scripts/link-dev.sh: one-command setup to switch ~/.uncaged-nerve to use monorepo packages instead of npm registry versions - Builds all packages, links CLI globally, links all @uncaged/* packages into the nerve workspace, and restarts daemon - Prevents version mismatch between CLI and daemon during development
21 lines
415 B
JSON
21 lines
415 B
JSON
{
|
|
"name": "nerve",
|
|
"private": true,
|
|
"engines": {
|
|
"node": ">=22.5.0"
|
|
},
|
|
"scripts": {
|
|
"prepare": "husky",
|
|
"build": "pnpm -r run build",
|
|
"check": "biome check .",
|
|
"format": "biome format --write .",
|
|
"link:dev": "bash scripts/link-dev.sh"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "^1.9.0",
|
|
"@rslib/core": "^0.21.3",
|
|
"husky": "^9.1.7",
|
|
"typescript": "^5.5.0"
|
|
}
|
|
}
|