@fedify/cli 0.11.3 → 0.12.0
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 +23 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
================================================================
|
|
5
5
|
|
|
6
6
|
[![JSR][JSR badge]][JSR]
|
|
7
|
+
[![npm][npm badge]][npm]
|
|
7
8
|
[![GitHub Releases][GitHub Releases badge]][GitHub Releases]
|
|
8
9
|
|
|
9
10
|
The `fedify` is a CLI toolchain for Fedify and debugging ActivityPub-enabled
|
|
@@ -12,6 +13,8 @@ federated server apps. Although it is primarily designed for developers who use
|
|
|
12
13
|
|
|
13
14
|
[JSR]: https://jsr.io/@fedify/cli
|
|
14
15
|
[JSR badge]: https://jsr.io/badges/@fedify/cli
|
|
16
|
+
[npm]: https://www.npmjs.com/package/@fedify/cli
|
|
17
|
+
[npm badge]: https://img.shields.io/npm/v/@fedify/cli?logo=npm
|
|
15
18
|
[GitHub Releases]: https://github.com/dahlia/fedify/releases
|
|
16
19
|
[GitHub Releases badge]: https://img.shields.io/github/v/release/dahlia/fedify?sort=semver&logo=github
|
|
17
20
|
[Fedify]: https://fedify.dev/
|
|
@@ -20,6 +23,26 @@ federated server apps. Although it is primarily designed for developers who use
|
|
|
20
23
|
Installation
|
|
21
24
|
------------
|
|
22
25
|
|
|
26
|
+
### Using npm
|
|
27
|
+
|
|
28
|
+
If you have npm installed, you can install `fedify` by running the following
|
|
29
|
+
command:
|
|
30
|
+
|
|
31
|
+
~~~~ sh
|
|
32
|
+
npm install -g @fedify/cli
|
|
33
|
+
~~~~
|
|
34
|
+
|
|
35
|
+
### Using Bun
|
|
36
|
+
|
|
37
|
+
If you have [Bun] installed, you can install `fedify` by running the following
|
|
38
|
+
command:
|
|
39
|
+
|
|
40
|
+
~~~~ sh [Bun]
|
|
41
|
+
bun install -g @fedify/cli
|
|
42
|
+
~~~~
|
|
43
|
+
|
|
44
|
+
[Bun]: https://bun.sh/
|
|
45
|
+
|
|
23
46
|
### Using Deno
|
|
24
47
|
|
|
25
48
|
If you have [Deno] installed, you can install `fedify` by running the following
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"@fedify/cli","version":"0.
|
|
1
|
+
{"name":"@fedify/cli","version":"0.12.0","private":false,"type":"module","files":["README.md","install.mjs","run.mjs"],"bin":{"fedify":"./run.mjs"},"scripts":{"postinstall":"node install.mjs"},"engines":{"node":">=18.0.0"},"os":["darwin","linux","win32"],"cpu":["x64","arm64"],"description":"CLI toolchain for Fedify and debugging ActivityPub","keywords":["fedify","activitypub","cli","fediverse"],"homepage":"https://fedify.dev/cli","bugs":{"url":"https://github.com/dahlia/fedify/issues"},"license":"MIT","author":{"name":"Hong Minhee","email":"hong@minhee.org","url":"https://hongminhee.org/"},"funding":["https://github.com/sponsors/dahlia","https://toss.me/hongminhee"],"repository":{"type":"git","url":"git+https://github.com/dahlia/fedify.git"}}
|