sequoia-cli 0.0.1 → 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,3 +1,70 @@
1
1
  # Sequoia
2
2
 
3
- A CLI for publishing [Standard.site](https://standard.site) documents to the [AT Protocol](https://atproto.com).
3
+ ![cover](https://sequoia.pub/og.png)
4
+
5
+ A CLI for publishing [Standard.site](https://standard.site) documents to the [AT Protocol](https://atproto.com).
6
+
7
+ > [!NOTE]
8
+ > [Visit the docs for more info](https://sequoia.pub)
9
+
10
+ ## Quickstart
11
+
12
+ Install the CLI
13
+
14
+ ```bash
15
+ pnpm i -g sequoia-cli
16
+ ```
17
+
18
+ Authorize
19
+
20
+ ```bash
21
+ sequoia auth
22
+ ```
23
+
24
+ Initialize in your blog repo
25
+
26
+ ```bash
27
+ sequoia init
28
+ ```
29
+
30
+ Publish your posts
31
+
32
+ ```bash
33
+ sequoia publish
34
+ ```
35
+
36
+ Inject link tags for verification (optional)
37
+
38
+ ```bash
39
+ sequoia inject
40
+ ```
41
+
42
+ [Full documentation](https://sequoia.pub)
43
+
44
+ ## Local Development
45
+
46
+ Make sure [Bun](https://bun.com) is installed
47
+
48
+ Clone the git repo and install dependencies
49
+
50
+ ```bash
51
+ git clone git@tangled.org:stevedylan.dev/sequoia
52
+ cd sequoia
53
+ bun install
54
+ ```
55
+
56
+ Move into `packages/cli` and build/test
57
+
58
+ ```bash
59
+ cd packages/cli
60
+ bun dev
61
+ ```
62
+
63
+ ## License
64
+
65
+ MIT
66
+
67
+ ## Contact
68
+
69
+ [ATProto](https://pds.ls/at://stevedylan.dev)
70
+ [Email](mailto:contact@stavedylan.dev)
package/dist/sequoia CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sequoia-cli",
3
- "version": "0.0.1",
3
+ "version": "0.0.3",
4
4
  "module": "dist/index.js",
5
5
  "type": "module",
6
6
  "bin": {