Files
paperclip/cli/package.json
Forgotten 5306142542 Add CLI package, config file support, and workspace setup
Add cli/ package with initial scaffolding. Add config-schema to shared
package for typed configuration. Add server config-file loader for
paperclip.config.ts support. Register cli in pnpm workspace. Add
.paperclip/ and .pnpm-store/ to gitignore. Minor Companies page fix.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-17 13:39:47 -06:00

27 lines
542 B
JSON

{
"name": "@paperclip/cli",
"version": "0.0.1",
"private": true,
"type": "module",
"bin": {
"paperclip": "./src/index.ts"
},
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@clack/prompts": "^0.10.0",
"@paperclip/db": "workspace:*",
"@paperclip/shared": "workspace:*",
"commander": "^13.1.0",
"picocolors": "^1.1.1"
},
"devDependencies": {
"@types/node": "^22.12.0",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
}
}