diff --git a/bun.lockb b/bun.lockb index 76e1389..53f4bbf 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/docs/extensions/microblogging.md b/docs/extensions/microblogging.md index 6dcaba0..4f894ed 100644 --- a/docs/extensions/microblogging.md +++ b/docs/extensions/microblogging.md @@ -35,7 +35,7 @@ Here's an example of an `Announce` action: | :----- | :----- | :------- | | author | String | Yes | -URI of the [Actor](./actors) who initiated the action. +URI of the [Actor](../objects/actors) who initiated the action. #### Object @@ -43,7 +43,7 @@ URI of the [Actor](./actors) who initiated the action. | :----- | :----- | :------- | | 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 diff --git a/docs/spec.md b/docs/spec.md index 337681a..17abcc6 100644 --- a/docs/spec.md +++ b/docs/spec.md @@ -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). - **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 diff --git a/package.json b/package.json index 3ea6396..aa9a4cf 100644 --- a/package.json +++ b/package.json @@ -1,17 +1,17 @@ { - "scripts": { - "docs:dev": "vitepress dev", - "docs:build": "vitepress build", - "docs:preview": "vitepress preview" - }, - "devDependencies": { - "@biomejs/biome": "^1.7.1", - "vitepress": "^1.1.0" - }, - "trustedDependencies": ["@biomejs/biome"], - "dependencies": { - "@tailwindcss/vite": "^4.0.0-alpha.14", - "iconify-icon": "^2.1.0", - "tailwindcss": "^4.0.0-alpha.14" - } + "scripts": { + "docs:dev": "vitepress dev", + "docs:build": "vitepress build", + "docs:preview": "vitepress preview" + }, + "devDependencies": { + "@biomejs/biome": "^1.7.1", + "vitepress": "^1.1.0" + }, + "trustedDependencies": ["@biomejs/biome"], + "dependencies": { + "@tailwindcss/vite": "^4.0.0-alpha.14", + "iconify-icon": "^2.1.0", + "tailwindcss": "^4.0.0-alpha.14" + } }