@notur/sdk 1.1.3 → 1.2.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 +6 -12
- package/bin/notur-keygen.js +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,11 +5,11 @@ Notur Extension Developer SDK. This package provides the runtime helpers and Rea
|
|
|
5
5
|
## Install
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
+
# Using npm, yarn, pnpm, or bun
|
|
8
9
|
npm install @notur/sdk
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
bun add @notur/sdk
|
|
10
|
+
# or: yarn add @notur/sdk
|
|
11
|
+
# or: pnpm add @notur/sdk
|
|
12
|
+
# or: bun add @notur/sdk
|
|
13
13
|
```
|
|
14
14
|
|
|
15
15
|
Peer dependencies:
|
|
@@ -70,12 +70,9 @@ All hooks are exported from `@notur/sdk`.
|
|
|
70
70
|
The SDK includes a CLI tool to package your extension into a `.notur` archive that can be uploaded to the Pterodactyl admin panel.
|
|
71
71
|
|
|
72
72
|
```bash
|
|
73
|
-
# From your extension directory
|
|
73
|
+
# From your extension directory (using npx, yarn dlx, pnpm dlx, or bunx)
|
|
74
74
|
npx notur-pack
|
|
75
75
|
|
|
76
|
-
# Or with bun
|
|
77
|
-
bunx notur-pack
|
|
78
|
-
|
|
79
76
|
# Specify a different path
|
|
80
77
|
npx notur-pack /path/to/my-extension
|
|
81
78
|
|
|
@@ -123,10 +120,7 @@ The `.sig` file format is compatible with PHP's `SignatureVerifier::verify()` an
|
|
|
123
120
|
## Build
|
|
124
121
|
|
|
125
122
|
```bash
|
|
126
|
-
|
|
127
|
-
```
|
|
128
|
-
|
|
129
|
-
```bash
|
|
123
|
+
# Using npm, yarn, pnpm, or bun
|
|
130
124
|
npm run build
|
|
131
125
|
```
|
|
132
126
|
|
package/bin/notur-keygen.js
CHANGED
|
File without changes
|