A CLI for publishing standard.site documents to ATProto
sequoia.pub
standard
site
lexicon
cli
publishing
1{
2 "name": "sequoia-cli",
3 "version": "0.2.1",
4 "type": "module",
5 "bin": {
6 "sequoia": "dist/index.js"
7 },
8 "files": [
9 "dist",
10 "README.md"
11 ],
12 "main": "./dist/index.js",
13 "exports": {
14 ".": "./dist/index.js"
15 },
16 "scripts": {
17 "lint": "biome lint --write",
18 "format": "biome format --write",
19 "build": "bun build src/index.ts --target node --outdir dist",
20 "dev": "bun run build && bun link",
21 "deploy": "bun run build && bun publish"
22 },
23 "devDependencies": {
24 "@biomejs/biome": "^2.3.13",
25 "@types/mime-types": "^3.0.1",
26 "@types/node": "^20"
27 },
28 "peerDependencies": {
29 "typescript": "^5"
30 },
31 "dependencies": {
32 "@atproto/api": "^0.18.17",
33 "@clack/prompts": "^1.0.0",
34 "cmd-ts": "^0.14.3",
35 "glob": "^13.0.0",
36 "mime-types": "^2.1.35",
37 "minimatch": "^10.1.1"
38 }
39}