@elizaos/plugin-sql 1.6.5 → 1.7.0-beta.0
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/dist/browser/index.browser.js +403 -239
- package/dist/browser/index.browser.js.map +22 -21
- package/dist/browser/tsconfig.build.tsbuildinfo +1 -1
- package/dist/node/index.node.js +418 -260
- package/dist/node/index.node.js.map +24 -23
- package/dist/node/tsconfig.build.node.tsbuildinfo +1 -1
- package/package.json +11 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elizaos/plugin-sql",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.7.0-beta.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/node/index.node.js",
|
|
6
6
|
"module": "dist/node/index.node.js",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
],
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"@electric-sql/pglite": "^0.3.3",
|
|
55
|
-
"@elizaos/core": "1.
|
|
55
|
+
"@elizaos/core": "1.7.0-beta.0",
|
|
56
56
|
"dotenv": "^17.2.3",
|
|
57
57
|
"drizzle-kit": "^0.31.1",
|
|
58
58
|
"drizzle-orm": "^0.45.0",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"uuid": "^13.0.0"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
|
-
"@elizaos/config": "1.
|
|
63
|
+
"@elizaos/config": "1.7.0-beta.0",
|
|
64
64
|
"@eslint/js": "^9.28.0",
|
|
65
65
|
"@types/node": "^24.10.1",
|
|
66
66
|
"@types/pg": "^8.15.6",
|
|
@@ -79,13 +79,17 @@
|
|
|
79
79
|
"clean": "rm -rf dist .turbo node_modules .turbo-tsconfig.json *.tsbuildinfo",
|
|
80
80
|
"format": "prettier --write .",
|
|
81
81
|
"format:check": "prettier --check ./src",
|
|
82
|
-
"test": "bun test",
|
|
82
|
+
"test": "bun run test:unit && bun run test:integration",
|
|
83
|
+
"test:unit": "bun test src/__tests__/unit/",
|
|
84
|
+
"test:integration": "bash scripts/run-integration-tests.sh",
|
|
85
|
+
"test:integration:postgres": "bash scripts/run-integration-tests.sh --postgres",
|
|
86
|
+
"test:migration": "bun test src/__tests__/migration/",
|
|
87
|
+
"test:migration:postgres": "bun test src/__tests__/migration/ --serial",
|
|
88
|
+
"test:e2e:upgrade": "bash src/__tests__/migration/e2e/run-upgrade-test.sh",
|
|
83
89
|
"test:watch": "bun test --watch",
|
|
84
90
|
"test:coverage": "bun test --coverage",
|
|
85
|
-
"test:integration": "bash scripts/run-integration-tests.sh",
|
|
86
|
-
"test:integration:fast": "bun test __tests__/integration --bail=5 --timeout=180000",
|
|
87
91
|
"build:clean": "rm -rf dist",
|
|
88
92
|
"lint:fix": "eslint . --fix"
|
|
89
93
|
},
|
|
90
|
-
"gitHead": "
|
|
94
|
+
"gitHead": "61d977c5b5e49fbb6784afe3b937fe03f14ec53f"
|
|
91
95
|
}
|