@insurup/sdk 0.1.5 → 0.1.7

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/dist/index.cjs CHANGED
@@ -58,7 +58,7 @@ module.exports = __toCommonJS(index_exports);
58
58
  // package.json
59
59
  var package_default = {
60
60
  name: "@insurup/sdk",
61
- version: "0.1.5",
61
+ version: "0.1.7",
62
62
  description: "Type-safe TypeScript SDK for the InsurUp insurance platform with GraphQL support. Tree-shakeable, works everywhere.",
63
63
  keywords: [
64
64
  "insurup",
@@ -97,12 +97,16 @@ var package_default = {
97
97
  exports: {
98
98
  ".": {
99
99
  types: "./dist/index.d.ts",
100
+ development: "./src/index.ts",
100
101
  import: "./dist/index.js",
101
- require: "./dist/index.cjs"
102
+ require: "./dist/index.cjs",
103
+ default: "./dist/index.js"
102
104
  },
103
105
  "./browser": {
104
106
  types: "./dist/index.d.ts",
105
- import: "./dist/index.browser.js"
107
+ development: "./src/index.ts",
108
+ import: "./dist/index.browser.js",
109
+ default: "./dist/index.browser.js"
106
110
  }
107
111
  },
108
112
  scripts: {
@@ -111,7 +115,7 @@ var package_default = {
111
115
  "check-types": "tsc --noEmit",
112
116
  dev: "tsup --watch",
113
117
  docs: "typedoc",
114
- lint: "eslint src --max-warnings 0",
118
+ lint: "eslint src test --max-warnings 0",
115
119
  test: "vitest run",
116
120
  "test:watch": "vitest",
117
121
  "test:coverage": "vitest run --coverage"