@picobase_app/client 0.1.0 → 0.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 +74 -5
- package/dist/index.d.mts +62 -2
- package/dist/index.d.ts +62 -2
- package/dist/index.js +1163 -65
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +1151 -22
- package/dist/index.mjs.map +1 -0
- package/package.json +14 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@picobase_app/client",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "PicoBase client SDK — auth, database, storage, and realtime for your apps",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -18,15 +18,23 @@
|
|
|
18
18
|
"scripts": {
|
|
19
19
|
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
|
|
20
20
|
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
|
|
21
|
+
"test": "vitest",
|
|
22
|
+
"test:watch": "vitest --watch",
|
|
23
|
+
"test:ui": "vitest --ui",
|
|
21
24
|
"typecheck": "tsc --noEmit",
|
|
22
|
-
"prepublishOnly": "npm run build"
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
"
|
|
25
|
+
"prepublishOnly": "npm run build",
|
|
26
|
+
"publish:dry": "npm publish --dry-run",
|
|
27
|
+
"release:patch": "npm version patch && npm publish",
|
|
28
|
+
"release:minor": "npm version minor && npm publish",
|
|
29
|
+
"release:major": "npm version major && npm publish"
|
|
26
30
|
},
|
|
27
31
|
"devDependencies": {
|
|
32
|
+
"@types/node": "^25.2.3",
|
|
33
|
+
"@vitest/ui": "^2.1.8",
|
|
34
|
+
"pocketbase": "^0.25.2",
|
|
28
35
|
"tsup": "^8.4.0",
|
|
29
|
-
"typescript": "^5.7.3"
|
|
36
|
+
"typescript": "^5.7.3",
|
|
37
|
+
"vitest": "^2.1.8"
|
|
30
38
|
},
|
|
31
39
|
"keywords": [
|
|
32
40
|
"picobase",
|