A CLI for publishing standard.site documents to ATProto
sequoia.pub
standard
site
lexicon
cli
publishing
1{
2 "name": "sequoia-cli",
3 "version": "0.3.0",
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 "@atproto/oauth-client-node": "^0.3.16",
34 "@clack/prompts": "^1.0.0",
35 "cmd-ts": "^0.14.3",
36 "glob": "^13.0.0",
37 "mime-types": "^2.1.35",
38 "minimatch": "^10.1.1",
39 "open": "^11.0.0"
40 }
41}