toes/package.json
2026-01-29 23:44:57 -08:00

32 lines
835 B
JSON

{
"name": "@because/toes",
"version": "0.0.2",
"description": "personal web appliance - turn it on and forget about the cloud",
"module": "src/index.ts",
"type": "module",
"bin": {
"toes": "src/cli/index.ts"
},
"scripts": {
"start": "bun run src/server/index.tsx",
"dev": "bun run --hot src/server/index.tsx",
"test": "bun test",
"cli:build": "bun run scripts/build.ts",
"cli:build:all": "bun run scripts/build.ts --all",
"cli:install": "bun cli:build && sudo cp dist/toes /usr/local/bin",
"cli:uninstall": "sudo rm /usr/local/bin"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5.9.2"
},
"dependencies": {
"commander": "^14.0.2",
"@because/forge": "^0.0.1",
"@because/hype": "^0.0.1",
"kleur": "^4.1.5"
}
}