@runtimescope/server-sdk 0.6.0 → 0.6.2

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,20 +1,32 @@
1
1
  {
2
2
  "name": "@runtimescope/server-sdk",
3
- "version": "0.6.0",
3
+ "version": "0.6.2",
4
4
  "description": "Server-side SDK for RuntimeScope — instruments database queries, HTTP requests, console output, and performance metrics",
5
5
  "type": "module",
6
- "main": "./dist/index.js",
6
+ "main": "./dist/index.cjs",
7
+ "module": "./dist/index.js",
7
8
  "types": "./dist/index.d.ts",
8
9
  "exports": {
9
10
  ".": {
11
+ "types": "./dist/index.d.ts",
10
12
  "import": "./dist/index.js",
11
- "types": "./dist/index.d.ts"
13
+ "require": "./dist/index.cjs"
12
14
  }
13
15
  },
14
16
  "files": [
15
17
  "dist"
16
18
  ],
17
- "keywords": ["runtime", "profiler", "telemetry", "observability", "server", "database", "prisma", "knex", "drizzle"],
19
+ "keywords": [
20
+ "runtime",
21
+ "profiler",
22
+ "telemetry",
23
+ "observability",
24
+ "server",
25
+ "database",
26
+ "prisma",
27
+ "knex",
28
+ "drizzle"
29
+ ],
18
30
  "license": "MIT",
19
31
  "scripts": {
20
32
  "build": "tsup",
@@ -38,11 +50,23 @@
38
50
  "better-sqlite3": ">=9.0.0"
39
51
  },
40
52
  "peerDependenciesMeta": {
41
- "@prisma/client": { "optional": true },
42
- "drizzle-orm": { "optional": true },
43
- "knex": { "optional": true },
44
- "pg": { "optional": true },
45
- "mysql2": { "optional": true },
46
- "better-sqlite3": { "optional": true }
53
+ "@prisma/client": {
54
+ "optional": true
55
+ },
56
+ "drizzle-orm": {
57
+ "optional": true
58
+ },
59
+ "knex": {
60
+ "optional": true
61
+ },
62
+ "pg": {
63
+ "optional": true
64
+ },
65
+ "mysql2": {
66
+ "optional": true
67
+ },
68
+ "better-sqlite3": {
69
+ "optional": true
70
+ }
47
71
  }
48
72
  }