@enderdash/client 0.1.1 → 0.1.3
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 +7 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +5 -0
- package/package.json +17 -3
package/README.md
CHANGED
|
@@ -64,10 +64,16 @@ bun run build
|
|
|
64
64
|
|
|
65
65
|
Publishing runs from GitHub releases through `.github/workflows/publish.yml`.
|
|
66
66
|
|
|
67
|
-
The workflow
|
|
67
|
+
The workflow publishes to npm and JSR with GitHub OpenID Connect tokens.
|
|
68
|
+
|
|
69
|
+
Before the first npm release, configure npm trusted publishing for `@enderdash/client` with:
|
|
68
70
|
|
|
69
71
|
- owner: `enderdash-com`
|
|
70
72
|
- repository: `enderdash-client`
|
|
71
73
|
- workflow: `publish.yml`
|
|
72
74
|
|
|
75
|
+
Before the first JSR release, create or open `@enderdash/client` on JSR, then link it to:
|
|
76
|
+
|
|
77
|
+
- repository: `enderdash-com/enderdash-client`
|
|
78
|
+
|
|
73
79
|
Then publish by creating a GitHub release for the version in `package.json`.
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAQA,OAAO,EAGL,KAAK,MAAM,EACZ,MAAM,6BAA6B,CAAC;AACrC,OAAO,EAAE,GAAG,EAAE,MAAM,wBAAwB,CAAC;AAE7C,OAAO,EAAE,MAAM,EAAE,MAAM,2BAA2B,CAAC;AACnD,YAAY,EAAE,MAAM,EAAE,MAAM,6BAA6B,CAAC;AAC1D,OAAO,EAAE,GAAG,EAAE,MAAM,wBAAwB,CAAC;AAC7C,cAAc,0BAA0B,CAAC;AAEzC,MAAM,WAAW,sBAAsB;IACrC,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,KAAK,CAAC,EAAE,OAAO,KAAK,CAAC;IACrB,OAAO,CAAC,EAAE,WAAW,CAAC;CACvB;AAED,wBAAgB,wBAAwB,CACtC,YAAY,EAAE,MAAM,EACpB,OAAO,GAAE,sBAA2B,UAerC;AAED,wBAAgB,2BAA2B,CACzC,OAAO,GAAE,sBAA2B,UASrC;AAED,wBAAgB,qBAAqB,CAAC,OAAO,GAAE,sBAA2B,OAEzE"}
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,9 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@enderdash/client",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "TypeScript client for the EnderDash HTTP API.",
|
|
3
|
+
"version": "0.1.3",
|
|
4
|
+
"description": "Generated TypeScript client for the EnderDash HTTP API.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"enderdash",
|
|
7
|
+
"minecraft",
|
|
8
|
+
"server-management",
|
|
9
|
+
"api-client",
|
|
10
|
+
"typescript",
|
|
11
|
+
"trpc",
|
|
12
|
+
"openapi"
|
|
13
|
+
],
|
|
14
|
+
"homepage": "https://enderdash.com",
|
|
5
15
|
"type": "module",
|
|
6
16
|
"license": "MIT",
|
|
17
|
+
"author": {
|
|
18
|
+
"name": "EnderDash",
|
|
19
|
+
"url": "https://enderdash.com"
|
|
20
|
+
},
|
|
7
21
|
"packageManager": "bun@1.3.14",
|
|
8
22
|
"engines": {
|
|
9
23
|
"node": ">=22"
|
|
@@ -15,10 +29,10 @@
|
|
|
15
29
|
"bugs": {
|
|
16
30
|
"url": "https://github.com/enderdash-com/enderdash-client/issues"
|
|
17
31
|
},
|
|
18
|
-
"homepage": "https://github.com/enderdash-com/enderdash-client#readme",
|
|
19
32
|
"files": [
|
|
20
33
|
"dist"
|
|
21
34
|
],
|
|
35
|
+
"sideEffects": false,
|
|
22
36
|
"exports": {
|
|
23
37
|
".": {
|
|
24
38
|
"types": "./dist/index.d.ts",
|