@backflow.sdk/client 0.1.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/package.json ADDED
@@ -0,0 +1,47 @@
1
+ {
2
+ "name": "@backflow.sdk/client",
3
+ "version": "0.1.0",
4
+ "description": "Tenant SDK for Backflow API (user-facing resources only)",
5
+ "main": "dist/index.js",
6
+ "module": "dist/index.mjs",
7
+ "types": "dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.mjs",
12
+ "require": "./dist/index.js"
13
+ }
14
+ },
15
+ "files": [
16
+ "dist"
17
+ ],
18
+ "scripts": {
19
+ "generate": "tsx scripts/generate.ts",
20
+ "generate:local": "tsx scripts/generate.ts --local",
21
+ "build": "tsup src/index.ts --format cjs,esm --dts",
22
+ "build:tenant": "tsx scripts/generate.ts && tsup src/index.ts --format cjs,esm --dts",
23
+ "dev": "tsup src/index.ts --format cjs,esm --dts --watch",
24
+ "clean": "rm -rf dist src/generated",
25
+ "typecheck": "tsc --noEmit"
26
+ },
27
+ "keywords": [
28
+ "backflow",
29
+ "api",
30
+ "sdk",
31
+ "typescript"
32
+ ],
33
+ "license": "ISC",
34
+ "devDependencies": {
35
+ "tsup": "^8.0.0",
36
+ "tsx": "^4.7.0",
37
+ "typescript": "^5.3.0"
38
+ },
39
+ "peerDependencies": {
40
+ "typescript": ">=4.7.0"
41
+ },
42
+ "peerDependenciesMeta": {
43
+ "typescript": {
44
+ "optional": true
45
+ }
46
+ }
47
+ }