@xylex-group/athena 1.5.0 → 1.6.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
@@ -8,6 +8,7 @@
8
8
  "blessed": "^0.1.81",
9
9
  "chalk": "^4.1.2",
10
10
  "cron-parser": "^4.9.0",
11
+ "pg": "^8.16.0",
11
12
  "use-sync-external-store": "^1.5.0",
12
13
  "uuid": "^9.0.1"
13
14
  },
@@ -15,12 +16,14 @@
15
16
  "devDependencies": {
16
17
  "@types/blessed": "^0.1.25",
17
18
  "@types/node": "^20.10.5",
19
+ "@types/pg": "^8.15.1",
18
20
  "@types/react": "^18.3.12",
19
21
  "@types/react-test-renderer": "^18.3.1",
20
22
  "@types/uuid": "^9.0.7",
21
23
  "@typescript-eslint/eslint-plugin": "^8.57.0",
22
24
  "@typescript-eslint/parser": "^8.57.0",
23
25
  "eslint": "^8.57.1",
26
+ "express": "^4.22.2",
24
27
  "react": "^18.3.1",
25
28
  "react-test-renderer": "^18.3.1",
26
29
  "tsup": "^8.5.1",
@@ -32,14 +35,14 @@
32
35
  },
33
36
  "exports": {
34
37
  ".": {
35
- "types": "./dist/index.d.ts",
36
38
  "import": "./dist/index.js",
37
- "require": "./dist/index.cjs"
39
+ "require": "./dist/index.cjs",
40
+ "types": "./dist/index.d.ts"
38
41
  },
39
42
  "./react": {
40
- "types": "./dist/react.d.ts",
41
43
  "import": "./dist/react.js",
42
- "require": "./dist/react.cjs"
44
+ "require": "./dist/react.cjs",
45
+ "types": "./dist/react.d.ts"
43
46
  }
44
47
  },
45
48
  "files": [
@@ -88,7 +91,7 @@
88
91
  ]
89
92
  }
90
93
  },
91
- "version": "1.5.0",
94
+ "version": "1.6.1",
92
95
  "scripts": {
93
96
  "build": "tsup",
94
97
  "check:all": "pnpm lint && pnpm typecheck && pnpm test && pnpm build",
@@ -104,6 +107,7 @@
104
107
  "lint:fix": "pnpm lint -- --fix",
105
108
  "publish:token": "node scripts/publish.js",
106
109
  "test": "node --import tsx --test test/*.test.ts",
110
+ "test:integration:postgres": "node scripts/run-postgres-introspection-test.mjs",
107
111
  "test:watch": "node --import tsx --test --watch test/*.test.ts",
108
112
  "typecheck": "tsc -p tsconfig.typecheck.json"
109
113
  }