@tinycloud/sdk-services 0.0.0-beta-20260401001229

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,48 @@
1
+ {
2
+ "name": "@tinycloud/sdk-services",
3
+ "version": "0.0.0-beta-20260401001229",
4
+ "description": "TinyCloud SDK Services - Platform-agnostic service implementations",
5
+ "author": "TinyCloud, Inc.",
6
+ "license": "EGPL",
7
+ "type": "module",
8
+ "main": "dist/index.cjs",
9
+ "module": "dist/index.js",
10
+ "types": "dist/index.d.ts",
11
+ "exports": {
12
+ ".": {
13
+ "types": "./dist/index.d.ts",
14
+ "import": "./dist/index.js",
15
+ "require": "./dist/index.cjs"
16
+ },
17
+ "./kv": {
18
+ "types": "./dist/kv/index.d.ts",
19
+ "import": "./dist/kv/index.js",
20
+ "require": "./dist/kv/index.cjs"
21
+ },
22
+ "./sql": {
23
+ "types": "./dist/sql/index.d.ts",
24
+ "import": "./dist/sql/index.js",
25
+ "require": "./dist/sql/index.cjs"
26
+ }
27
+ },
28
+ "files": [
29
+ "dist"
30
+ ],
31
+ "scripts": {
32
+ "build": "tsup",
33
+ "clean": "rm -rf dist",
34
+ "test": "bun test"
35
+ },
36
+ "dependencies": {
37
+ "zod": "^3.23.0"
38
+ },
39
+ "devDependencies": {
40
+ "@types/node": "^20",
41
+ "tsup": "^8.0.0",
42
+ "typescript": "^5.0.0"
43
+ },
44
+ "repository": {
45
+ "type": "git",
46
+ "url": "https://github.com/tinycloudlabs/web-sdk"
47
+ }
48
+ }