vantuz 3.4.0 → 3.4.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/core/database.js CHANGED
@@ -8,6 +8,7 @@ const dbPath = path.join(process.cwd(), 'vantuz.sqlite');
8
8
  const sequelize = new Sequelize({
9
9
  dialect: 'sqlite',
10
10
  storage: dbPath,
11
+ dialectModule: require('better-sqlite3'),
11
12
  logging: false // Konsolu kirletmesin
12
13
  });
13
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vantuz",
3
- "version": "3.4.0",
3
+ "version": "3.4.2",
4
4
  "description": "Yapay Zeka Destekli Yeni Nesil E-Ticaret Yönetim Platformu (CLI)",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -24,6 +24,7 @@
24
24
  "license": "Commercial",
25
25
  "dependencies": {
26
26
  "axios": "^1.6.0",
27
+ "better-sqlite3": "^12.6.2",
27
28
  "boxen": "^5.1.2",
28
29
  "chalk": "^4.1.2",
29
30
  "conf": "^10.2.0",
@@ -34,7 +35,6 @@
34
35
  "ora": "^5.4.1",
35
36
  "pkg": "^5.8.1",
36
37
  "sequelize": "^6.37.7",
37
- "sqlite3": "^5.1.7",
38
38
  "table": "^6.8.0"
39
39
  },
40
40
  "os": [
@@ -31,6 +31,7 @@ export class Hippocampus {
31
31
  this.db = new Sequelize({
32
32
  dialect: 'sqlite',
33
33
  storage: dbPath,
34
+ dialectModule: require('better-sqlite3'),
34
35
  logging: false
35
36
  });
36
37
 
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vantuz/plugin",
3
3
  "version": "2.0.0",
4
- "description": "Vantuz AI E-Commerce Plugin for Vantuz Gateway",
4
+ "description": "Vantuz AI E-Commerce Plugin for Vantuz Gateway",
5
5
  "type": "module",
6
6
  "main": "index.js",
7
7
  "exports": {
@@ -16,6 +16,6 @@
16
16
  "dependencies": {
17
17
  "axios": "^1.6.0",
18
18
  "sequelize": "^6.37.7",
19
- "sqlite3": "^5.1.7"
19
+ "better-sqlite3": "^9.0.0"
20
20
  }
21
- }
21
+ }