@kyncode/sdk 0.1.0 → 0.1.1

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
@@ -1087,7 +1087,7 @@ function readErrorMessage(value) {
1087
1087
  }
1088
1088
 
1089
1089
  // src/loly.ts
1090
- var SDK_VERSION = true ? "0.1.0" : "0.1.0";
1090
+ var SDK_VERSION = true ? "0.1.1" : "0.1.0";
1091
1091
  var DEFAULT_ENDPOINT = "https://api.kyncode.com/v1/ingest";
1092
1092
  var LIVE_API_KEY_PATTERN = /^kyn_live_[a-f0-9]{64}$/u;
1093
1093
  var DEDUPE_WINDOW_MS = 5e3;
package/dist/index.js CHANGED
@@ -1057,7 +1057,7 @@ function readErrorMessage(value) {
1057
1057
  }
1058
1058
 
1059
1059
  // src/loly.ts
1060
- var SDK_VERSION = true ? "0.1.0" : "0.1.0";
1060
+ var SDK_VERSION = true ? "0.1.1" : "0.1.0";
1061
1061
  var DEFAULT_ENDPOINT = "https://api.kyncode.com/v1/ingest";
1062
1062
  var LIVE_API_KEY_PATTERN = /^kyn_live_[a-f0-9]{64}$/u;
1063
1063
  var DEDUPE_WINDOW_MS = 5e3;
package/package.json CHANGED
@@ -1,65 +1,65 @@
1
- {
2
- "name": "@kyncode/sdk",
3
- "version": "0.1.0",
4
- "description": "Official KYNCODE error capture SDK for Next.js and Node.js.",
5
- "license": "UNLICENSED",
6
- "type": "module",
7
- "sideEffects": false,
8
- "main": "./dist/index.cjs",
9
- "module": "./dist/index.js",
10
- "types": "./dist/index.d.ts",
11
- "exports": {
12
- ".": {
13
- "import": {
14
- "types": "./dist/index.d.ts",
15
- "default": "./dist/index.js"
16
- },
17
- "require": {
18
- "types": "./dist/index.d.cts",
19
- "default": "./dist/index.cjs"
20
- }
21
- }
22
- },
23
- "files": [
24
- "dist"
25
- ],
26
- "keywords": [
27
- "error-monitoring",
28
- "kyncode",
29
- "nextjs",
30
- "nodejs",
31
- "observability",
32
- "typescript"
33
- ],
34
- "engines": {
35
- "node": ">=22.0.0"
36
- },
37
- "publishConfig": {
38
- "access": "public",
39
- "registry": "https://registry.npmjs.org/"
40
- },
41
- "overrides": {
42
- "esbuild": "0.28.2"
43
- },
44
- "scripts": {
45
- "build": "npm run clean && tsup --config tsup.config.ts",
46
- "ci:check": "node ./scripts/verify-clean-install.mjs",
47
- "clean": "node ./scripts/clean.mjs",
48
- "next:check": "npm run build && node ./scripts/verify-next-package.mjs",
49
- "prepack": "npm run clean && npm run typecheck && npm test && npm run build && node ./scripts/verify-package.mjs && node ./scripts/verify-next-package.mjs",
50
- "postpack": "node ./scripts/verify-built-package.mjs",
51
- "release:check": "npm run prepack",
52
- "test": "vitest run --config ./vitest.config.ts",
53
- "test:watch": "vitest --config ./vitest.config.ts",
54
- "typecheck": "tsc --project tsconfig.json"
55
- },
56
- "devDependencies": {
57
- "@arethetypeswrong/cli": "0.18.5",
58
- "@types/node": "22.19.11",
59
- "publint": "0.3.24",
60
- "tsup": "8.5.1",
61
- "tsx": "4.23.12",
62
- "typescript": "5.9.3",
63
- "vitest": "4.1.11"
64
- }
65
- }
1
+ {
2
+ "name": "@kyncode/sdk",
3
+ "version": "0.1.1",
4
+ "description": "Official KYNCODE error capture SDK for Next.js and Node.js.",
5
+ "license": "UNLICENSED",
6
+ "type": "module",
7
+ "sideEffects": false,
8
+ "main": "./dist/index.cjs",
9
+ "module": "./dist/index.js",
10
+ "types": "./dist/index.d.ts",
11
+ "exports": {
12
+ ".": {
13
+ "import": {
14
+ "types": "./dist/index.d.ts",
15
+ "default": "./dist/index.js"
16
+ },
17
+ "require": {
18
+ "types": "./dist/index.d.cts",
19
+ "default": "./dist/index.cjs"
20
+ }
21
+ }
22
+ },
23
+ "files": [
24
+ "dist"
25
+ ],
26
+ "keywords": [
27
+ "error-monitoring",
28
+ "kyncode",
29
+ "nextjs",
30
+ "nodejs",
31
+ "observability",
32
+ "typescript"
33
+ ],
34
+ "engines": {
35
+ "node": ">=22.0.0"
36
+ },
37
+ "publishConfig": {
38
+ "access": "public",
39
+ "registry": "https://registry.npmjs.org/"
40
+ },
41
+ "overrides": {
42
+ "esbuild": "0.28.2"
43
+ },
44
+ "scripts": {
45
+ "build": "npm run clean && tsup --config tsup.config.ts",
46
+ "ci:check": "node ./scripts/verify-clean-install.mjs",
47
+ "clean": "node ./scripts/clean.mjs",
48
+ "next:check": "npm run build && node ./scripts/verify-next-package.mjs",
49
+ "prepack": "npm run clean && npm run typecheck && npm test && npm run build && node ./scripts/verify-package.mjs && node ./scripts/verify-next-package.mjs",
50
+ "postpack": "node ./scripts/verify-built-package.mjs",
51
+ "release:check": "npm run prepack",
52
+ "test": "vitest run --config ./vitest.config.ts",
53
+ "test:watch": "vitest --config ./vitest.config.ts",
54
+ "typecheck": "tsc --project tsconfig.json"
55
+ },
56
+ "devDependencies": {
57
+ "@arethetypeswrong/cli": "0.18.5",
58
+ "@types/node": "22.19.11",
59
+ "publint": "0.3.24",
60
+ "tsup": "8.5.1",
61
+ "tsx": "4.23.12",
62
+ "typescript": "5.9.3",
63
+ "vitest": "4.1.11"
64
+ }
65
+ }