krisspy-sdk 0.5.3 → 0.5.4

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.
Files changed (2) hide show
  1. package/dist/index.js +0 -15
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -2000,18 +2000,3 @@ var KrisspyClient = class {
2000
2000
  function createClient(options) {
2001
2001
  return new KrisspyClient(options);
2002
2002
  }
2003
- // Annotate the CommonJS export names for ESM import in node:
2004
- 0 && (module.exports = {
2005
- HttpClient,
2006
- KrisspyAnalytics,
2007
- KrisspyAuth,
2008
- KrisspyClient,
2009
- KrisspyRealtime,
2010
- KrisspyStorage,
2011
- QueryBuilder,
2012
- RealtimeChannel,
2013
- StorageBucket,
2014
- createClient,
2015
- isBrowser,
2016
- isReactNative
2017
- });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "krisspy-sdk",
3
- "version": "0.5.3",
3
+ "version": "0.5.4",
4
4
  "description": "Krisspy Cloud SDK - Database, Auth, Storage, and Functions for your apps",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -15,7 +15,7 @@
15
15
  }
16
16
  },
17
17
  "scripts": {
18
- "build": "tsup src/index.ts --format cjs,esm --dts --clean --target es2017",
18
+ "build": "tsup src/index.ts --format cjs,esm --dts --clean --target es2017 --platform browser",
19
19
  "dev": "tsup src/index.ts --format cjs,esm --dts --watch",
20
20
  "test": "vitest",
21
21
  "lint": "eslint src --ext .ts",