@kysera/debug 0.6.1 → 0.7.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/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @kysera/debug
2
2
 
3
- Debug utilities for Kysera ORM - query logging, profiling, SQL formatting, and performance analysis.
3
+ Debug utilities for Kysera - query logging, profiling, SQL formatting, and performance analysis.
4
4
 
5
5
  ## Installation
6
6
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@kysera/debug",
3
- "version": "0.6.1",
4
- "description": "Debug utilities for Kysera ORM - query logging, profiling, SQL formatting",
3
+ "version": "0.7.1",
4
+ "description": "Debug utilities for Kysely - query logging, profiling, SQL formatting",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "types": "./dist/index.d.ts",
@@ -19,19 +19,19 @@
19
19
  "kysely": ">=0.28.8"
20
20
  },
21
21
  "dependencies": {
22
- "@kysera/core": "0.6.1"
22
+ "@kysera/core": "0.7.1"
23
23
  },
24
24
  "devDependencies": {
25
25
  "@types/node": "^24.10.1",
26
26
  "@vitest/coverage-v8": "^4.0.15",
27
- "kysely": "^0.28.8",
27
+ "kysely": "^0.28.9",
28
28
  "tsup": "^8.5.1",
29
29
  "typescript": "^5.9.3",
30
30
  "vitest": "^4.0.15"
31
31
  },
32
32
  "keywords": [
33
33
  "kysely",
34
- "orm",
34
+ "data-access",
35
35
  "database",
36
36
  "debug",
37
37
  "profiling",
package/src/index.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @kysera/debug - Debug utilities for Kysera ORM
2
+ * @kysera/debug - Debug utilities for Kysera
3
3
  *
4
4
  * Provides query logging, metrics collection, profiling,
5
5
  * and SQL formatting utilities.