busa-sdk 0.9.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 +10 -0
- package/dist/index.d.ts +15875 -0
- package/dist/index.js +2086 -0
- package/package.json +41 -0
package/package.json
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "busa-sdk",
|
|
3
|
+
"version": "0.9.3",
|
|
4
|
+
"description": "Typed TypeScript/JavaScript SDK for the Busabase OpenAPI REST API. Talks to a local or remote `busabase server` (or Busabase Cloud). Short-name alias for busabase-sdk.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"homepage": "https://github.com/busabase/busabase/tree/main/apps/busabase-sdk",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/busabase/busabase.git",
|
|
10
|
+
"directory": "apps/busabase-sdk"
|
|
11
|
+
},
|
|
12
|
+
"bugs": "https://github.com/busabase/busabase/issues",
|
|
13
|
+
"type": "module",
|
|
14
|
+
"private": false,
|
|
15
|
+
"publishConfig": {
|
|
16
|
+
"access": "public"
|
|
17
|
+
},
|
|
18
|
+
"main": "./dist/index.js",
|
|
19
|
+
"module": "./dist/index.js",
|
|
20
|
+
"types": "./dist/index.d.ts",
|
|
21
|
+
"exports": {
|
|
22
|
+
".": {
|
|
23
|
+
"types": "./dist/index.d.ts",
|
|
24
|
+
"default": "./dist/index.js"
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"files": [
|
|
28
|
+
"dist",
|
|
29
|
+
"README.md"
|
|
30
|
+
],
|
|
31
|
+
"sideEffects": false,
|
|
32
|
+
"dependencies": {
|
|
33
|
+
"@orpc/client": "^1.14.6",
|
|
34
|
+
"@orpc/contract": "^1.14.6",
|
|
35
|
+
"@orpc/openapi-client": "^1.14.6",
|
|
36
|
+
"zod": "^4.3.6"
|
|
37
|
+
},
|
|
38
|
+
"engines": {
|
|
39
|
+
"node": ">=24.18.0"
|
|
40
|
+
}
|
|
41
|
+
}
|