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 46 lines 1.1 kB view raw
1{ 2 "name": "sequoia-cli", 3 "version": "0.5.5", 4 "type": "module", 5 "bin": { 6 "sequoia": "dist/index.js" 7 }, 8 "files": [ 9 "dist", 10 "README.md", 11 "sequoia.schema.json" 12 ], 13 "main": "./dist/index.js", 14 "exports": { 15 ".": "./dist/index.js" 16 }, 17 "scripts": { 18 "lint": "biome lint --write", 19 "format": "biome format --write", 20 "build": "bun build src/index.ts --target node --outdir dist && mkdir -p dist/components && cp src/components/*.js dist/components/", 21 "test": "bun test", 22 "dev": "bun run build && bun link", 23 "deploy": "bun run build && bun publish" 24 }, 25 "devDependencies": { 26 "@biomejs/biome": "^2.3.13", 27 "@types/js-yaml": "^4.0.9", 28 "@types/mime-types": "^3.0.1", 29 "@types/node": "^20" 30 }, 31 "peerDependencies": { 32 "typescript": "^5" 33 }, 34 "dependencies": { 35 "@atproto/api": "^0.18.17", 36 "@atproto/oauth-client-node": "^0.3.16", 37 "@clack/prompts": "^1.0.0", 38 "cmd-ts": "^0.14.3", 39 "glob": "^13.0.0", 40 "js-yaml": "^4.1.1", 41 "mime-types": "^2.1.35", 42 "minimatch": "^10.1.1", 43 "open": "^11.0.0", 44 "smol-toml": "^1.6.0" 45 } 46}