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

Configure Feed

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

at fix/text-content-type-guard 25 lines 735 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:server": "cd packages/server && bun run format", 11 "format:docs": "cd docs && bun run format", 12 "dev:cli": "cd packages/cli && bun run dev", 13 "dev:docs": "cd docs && bun run dev", 14 "build:docs": "cd docs && bun run build", 15 "build:cli": "cd packages/cli && bun run build", 16 "deploy:docs": "cd docs && bun run deploy", 17 "deploy:cli": "cd packages/cli && bun run deploy", 18 "dev:server": "cd packages/server && bun run dev", 19 "start:server": "cd packages/server && bun run start" 20 }, 21 "devDependencies": { 22 "@types/bun": "latest", 23 "typescript": "^5" 24 } 25}