@kadoa/node-sdk 0.12.1 → 0.14.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/package.json CHANGED
@@ -1,67 +1,70 @@
1
1
  {
2
- "name": "@kadoa/node-sdk",
3
- "version": "0.12.1",
4
- "description": "Kadoa SDK for Node.js",
5
- "main": "./dist/index.js",
6
- "module": "./dist/index.mjs",
7
- "types": "./dist/index.d.ts",
8
- "exports": {
9
- ".": {
10
- "types": "./dist/index.d.ts",
11
- "import": "./dist/index.mjs",
12
- "require": "./dist/index.js"
13
- }
14
- },
15
- "files": [
16
- "dist",
17
- "README.md"
18
- ],
19
- "scripts": {
20
- "build": "tsup",
21
- "dev": "tsup --watch",
22
- "dev:watch": "tsup --watch --onSuccess 'echo SDK build completed'",
23
- "test": "bun test",
24
- "test:e2e": "bun test test/e2e",
25
- "test:integration": "bun test test/integration",
26
- "test:watch": "bun test --watch",
27
- "audit": "npm audit --production",
28
- "audit:fix": "npm audit fix --production",
29
- "prepublishOnly": "bun run build"
30
- },
31
- "dependencies": {
32
- "axios": "1.12.2",
33
- "debug": "4.4.3",
34
- "es-toolkit": "1.39.10",
35
- "uuid": "13.0.0",
36
- "ws": "8.18.3",
37
- "zod": "4.1.11"
38
- },
39
- "devDependencies": {
40
- "@types/debug": "^4.1.12",
41
- "@types/node": "24.6.2",
42
- "@types/uuid": "^11.0.0",
43
- "tsup": "8.5.0",
44
- "typescript": "5.9.3"
45
- },
46
- "engines": {
47
- "node": ">=22"
48
- },
49
- "repository": {
50
- "type": "git",
51
- "url": "https://github.com/kadoa/kadoa-sdks.git",
52
- "directory": "sdks/node"
53
- },
54
- "publishConfig": {
55
- "access": "public"
56
- },
57
- "keywords": [
58
- "kadoa",
59
- "api",
60
- "sdk",
61
- "client",
62
- "typescript",
63
- "node"
64
- ],
65
- "author": "Kadoa",
66
- "license": "MIT"
2
+ "name": "@kadoa/node-sdk",
3
+ "version": "0.14.1",
4
+ "description": "Kadoa SDK for Node.js",
5
+ "main": "./dist/index.js",
6
+ "module": "./dist/index.mjs",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.mjs",
12
+ "require": "./dist/index.js"
13
+ }
14
+ },
15
+ "files": [
16
+ "dist",
17
+ "README.md"
18
+ ],
19
+ "scripts": {
20
+ "build": "tsup",
21
+ "dev": "tsup --watch",
22
+ "dev:watch": "tsup --watch --onSuccess 'echo SDK build completed'",
23
+ "typecheck": "tsc --noEmit",
24
+ "format-and-lint": "biome check .",
25
+ "format-and-lint:fix": "biome check . --write",
26
+ "test": "bun test",
27
+ "test:e2e": "bun test test/e2e",
28
+ "test:integration": "bun test test/integration",
29
+ "test:watch": "bun test --watch",
30
+ "audit": "npm audit --production",
31
+ "audit:fix": "npm audit fix --production",
32
+ "prepublishOnly": "bun run build"
33
+ },
34
+ "dependencies": {
35
+ "axios": "1.12.2",
36
+ "debug": "4.4.3",
37
+ "es-toolkit": "1.40.0",
38
+ "uuid": "13.0.0",
39
+ "ws": "8.18.3",
40
+ "zod": "4.1.12"
41
+ },
42
+ "devDependencies": {
43
+ "@types/debug": "^4.1.12",
44
+ "@types/node": "24.7.1",
45
+ "@types/uuid": "^11.0.0",
46
+ "tsup": "8.5.0",
47
+ "typescript": "5.9.3"
48
+ },
49
+ "engines": {
50
+ "node": ">=22"
51
+ },
52
+ "repository": {
53
+ "type": "git",
54
+ "url": "https://github.com/kadoa/kadoa-sdks.git",
55
+ "directory": "sdks/node"
56
+ },
57
+ "publishConfig": {
58
+ "access": "public"
59
+ },
60
+ "keywords": [
61
+ "kadoa",
62
+ "api",
63
+ "sdk",
64
+ "client",
65
+ "typescript",
66
+ "node"
67
+ ],
68
+ "author": "Kadoa",
69
+ "license": "MIT"
67
70
  }