mirror of
https://github.com/versia-pub/docs.git
synced 2025-12-06 06:18:19 +01:00
fix: 🐛 Fix build crashing because of dead links
This commit is contained in:
parent
ead52e6d33
commit
6a512684c5
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
||||||
30
package.json
30
package.json
|
|
@ -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"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue