A CLI for publishing standard.site documents to ATProto sequoia.pub
standard site lexicon cli publishing
56
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 597d4cb38882c4e1fe8116edb009aac17633b4a2 22 lines 566 B view raw
1{ 2 "name": "sequoia-monorepo", 3 "private": true, 4 "workspaces": [ 5 "packages/*", 6 "docs" 7 ], 8 "scripts": { 9 "format:cli": "cd packages/cli && bun run format", 10 "format:docs": "cd docs && bun run format", 11 "dev:cli": "cd packages/cli && bun run dev", 12 "dev:docs": "cd docs && bun run dev", 13 "build:docs": "cd docs && bun run build", 14 "build:cli": "cd packages/cli && bun run build", 15 "deploy:docs": "cd docs && bun run deploy", 16 "deploy:cli": "cd packages/cli && bun run deploy" 17 }, 18 "devDependencies": { 19 "@types/bun": "latest", 20 "typescript": "^5" 21 } 22}