fix: 🐛 Fix build crashing because of dead links

This commit is contained in:
Jesse Wierzbinski 2024-05-01 17:44:05 -10:00
parent ead52e6d33
commit 6a512684c5
No known key found for this signature in database
4 changed files with 18 additions and 18 deletions

BIN
bun.lockb

Binary file not shown.

View file

@ -35,7 +35,7 @@ Here's an example of an `Announce` action:
| :----- | :----- | :------- | | :----- | :----- | :------- |
| author | String | Yes | | author | String | Yes |
URI of the [Actor](./actors) who initiated the action. URI of the [Actor](../objects/actors) who initiated the action.
#### Object #### Object
@ -43,7 +43,7 @@ URI of the [Actor](./actors) who initiated the action.
| :----- | :----- | :------- | | :----- | :----- | :------- |
| object | String | Yes | | object | String | Yes |
URI of the object being announced. Must be of type [Note](./note) URI of the object being announced. Must be of type [Note](../objects/note)
#### Implementation #### Implementation

View file

@ -28,7 +28,7 @@ The words **MUST**, **MUST NOT**, **SHOULD**, **SHOULD NOT**, and **MAY** are us
- **Actor**: An individual or entity utilizing the Lysand protocol, analogous to ActivityPub's `Actor` objects. An actor could be a [Server Actor](federation/server-actor), representing a server, or a [User Actor](objects/actors). - **Actor**: An individual or entity utilizing the Lysand protocol, analogous to ActivityPub's `Actor` objects. An actor could be a [Server Actor](federation/server-actor), representing a server, or a [User Actor](objects/actors).
- **Server**: A server that deploys the Lysand protocol, referred to as an **implementation**. Servers are also known as **instances** when referring to the deployed form. - **Server**: A server that deploys the Lysand protocol, referred to as an **implementation**. Servers are also known as **instances** when referring to the deployed form.
- **Entity**: A generic term for any object in the Lysand protocol, such as an [Actor](objects/actors), [Note](objects/publications), or [Attachment](objects/attachments). - **Entity**: A generic term for any object in the Lysand protocol, such as an [Actor](objects/actors), [Note](objects/publications), or [Like](objects/like).
# Implementation Requirements # Implementation Requirements

View file

@ -1,17 +1,17 @@
{ {
"scripts": { "scripts": {
"docs:dev": "vitepress dev", "docs:dev": "vitepress dev",
"docs:build": "vitepress build", "docs:build": "vitepress build",
"docs:preview": "vitepress preview" "docs:preview": "vitepress preview"
}, },
"devDependencies": { "devDependencies": {
"@biomejs/biome": "^1.7.1", "@biomejs/biome": "^1.7.1",
"vitepress": "^1.1.0" "vitepress": "^1.1.0"
}, },
"trustedDependencies": ["@biomejs/biome"], "trustedDependencies": ["@biomejs/biome"],
"dependencies": { "dependencies": {
"@tailwindcss/vite": "^4.0.0-alpha.14", "@tailwindcss/vite": "^4.0.0-alpha.14",
"iconify-icon": "^2.1.0", "iconify-icon": "^2.1.0",
"tailwindcss": "^4.0.0-alpha.14" "tailwindcss": "^4.0.0-alpha.14"
} }
} }