@bernierllc/database-adapter 1.0.1 → 1.0.3

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.
Files changed (1) hide show
  1. package/package.json +17 -13
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bernierllc/database-adapter",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "Universal database connection and query abstraction layer with connection pooling",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -10,16 +10,6 @@
10
10
  "README.md",
11
11
  "LICENSE"
12
12
  ],
13
- "scripts": {
14
- "build": "tsc",
15
- "prebuild": "npm run clean",
16
- "clean": "rm -rf dist",
17
- "test": "echo 'Tests blocked by better-sqlite3 native bindings (infrastructure issue)' && exit 0",
18
- "test:real": "jest",
19
- "test:watch": "jest --watch",
20
- "test:coverage": "jest --coverage",
21
- "lint": "eslint src --ext .ts"
22
- },
23
13
  "keywords": [
24
14
  "database",
25
15
  "adapter",
@@ -35,7 +25,7 @@
35
25
  "author": "Bernier LLC",
36
26
  "license": "PROPRIETARY",
37
27
  "dependencies": {
38
- "@bernierllc/logger": "^1.0.1"
28
+ "@bernierllc/logger": "1.1.0"
39
29
  },
40
30
  "peerDependencies": {
41
31
  "better-sqlite3": "^9.2.0",
@@ -77,5 +67,19 @@
77
67
  "type": "git",
78
68
  "url": "https://github.com/BernierLLC/tools.git",
79
69
  "directory": "packages/core/database-adapter"
70
+ },
71
+ "publishConfig": {
72
+ "access": "public",
73
+ "registry": "https://registry.npmjs.org/"
74
+ },
75
+ "scripts": {
76
+ "build": "tsc",
77
+ "prebuild": "npm run clean",
78
+ "clean": "rm -rf dist",
79
+ "test": "jest",
80
+ "test:run": "jest --coverage --no-cache",
81
+ "test:watch": "jest --watch",
82
+ "test:coverage": "jest --coverage",
83
+ "lint": "eslint src --ext .ts"
80
84
  }
81
- }
85
+ }