Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions content/docs/lifestealz/meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"pages": [
"index",
"installation",
"permissions",
"---Commands---",
"commands/lifestealz",
"commands/eliminate",
Expand Down
15 changes: 15 additions & 0 deletions content/docs/lifestealz/permissions.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
title: Permissions
description: Permissions recognized by lifestealz
icon: UserKey
---

| Permission | Description | Default |
|------------|-------------|---------|
| `lifestealz.bypassrevivelimit` | Allow a player to bypass the revive limit | op |
| `lifestealz.withdraw` | Allow a player to withdraw heart | true |
| `lifestealz.revive` | Allow a player to revive others with a revive crystal | true |
| `lifestealz.viewrecipes` | Allow a player to view the custom recipes | true |
| `lifestealz.help` | Allow a player to access the help menu | true |
| `lifestealz.viewhearts` | Allow a player to view the amount of hearts (/hearts) they have | true |
| `lifestealz.maxhearts.[amount]` | Set the max hearts for a player. This overwrites the maxHearts in the config | - |
2 changes: 2 additions & 0 deletions next-env.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />
import "./.next/dev/types/routes.d.ts";
import "./.next/dev/types/root-params.d.ts";

// NOTE: This file should not be edited
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
34 changes: 16 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,25 +10,23 @@
"restart": "pm2 restart zeta-docs"
},
"dependencies": {
"fumadocs-core": "15.6.3",
"fumadocs-mdx": "11.6.10",
"fumadocs-ui": "15.6.3",
"lucide-react": "^0.525.0",
"next": "15.3.4",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"shiki": "^3.8.1"
"fumadocs-core": "16.14.2",
"fumadocs-mdx": "15.2.2",
"fumadocs-ui": "npm:@fumadocs/base-ui@ 16.14.2",
"lucide-react": "^1.28.0",
"next": "16.3.0",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"shiki": "^4.4.2"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.11",
"@types/mdx": "^2.0.13",
"@types/node": "24.0.7",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"eslint": "^8",
"eslint-config-next": "15.3.4",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.11",
"typescript": "^5.8.3"
"@tailwindcss/postcss": "^4.3.3",
"@types/mdx": "^2.0.14",
"@types/node": "^26.1.2",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"postcss": "^8.5.25",
"tailwindcss": "^4.3.3",
"typescript": "^6.0.3"
}
}
Loading