vantuz 3.3.2 → 3.3.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 (3) hide show
  1. package/onboard.js +11 -0
  2. package/package.json +86 -84
  3. package/start.bat +33 -0
package/onboard.js ADDED
@@ -0,0 +1,11 @@
1
+ #!/usr/bin/env node
2
+
3
+ import { Configurator } from './config.js';
4
+
5
+ try {
6
+ const configurator = new Configurator();
7
+ await configurator.run();
8
+ } catch (e) {
9
+ console.error('[HATA] Onboarding basarisiz:', e?.message || e);
10
+ process.exitCode = 1;
11
+ }
package/package.json CHANGED
@@ -1,85 +1,87 @@
1
- {
2
- "name": "vantuz",
3
- "version": "3.3.2",
4
- "description": "Yapay Zeka Destekli E-Ticaret Yönetim Platformu - 7 Pazaryeri + WhatsApp/Telegram",
5
- "type": "module",
6
- "main": "cli.js",
7
- "bin": {
8
- "vantuz": "cli.js"
9
- },
10
- "scripts": {
11
- "start": "node cli.js tui",
12
- "tui": "node cli.js tui",
13
- "config": "node cli.js config",
14
- "status": "node cli.js status",
15
- "postinstall": "echo '🐙 Vantuz kuruldu! Başlatmak için: npx vantuz-onboard'",
16
- "test": "node --test",
17
- "lint": "eslint plugins/"
18
- },
19
- "keywords": [
20
- "ecommerce",
21
- "e-ticaret",
22
- "trendyol",
23
- "hepsiburada",
24
- "amazon",
25
- "n11",
26
- "ciceksepeti",
27
- "pttavm",
28
- "pazarama",
29
- "marketplace",
30
- "pazaryeri",
31
- "ai",
32
- "yapay-zeka",
33
- "repricer",
34
- "fiyatlama",
35
- "whatsapp",
36
- "telegram",
37
- "enterprise",
38
- "gateway",
39
- "management",
40
- "cli"
41
- ],
42
- "author": "Vantuz",
43
- "license": "SEE LICENSE IN LICENSE",
44
- "repository": {
45
- "type": "git",
46
- "url": "git+https://github.com/nuricanavsar/vantuz.git"
47
- },
48
- "homepage": "https://vantuz.ai",
49
- "bugs": {
50
- "url": "https://github.com/nuricanavsar/vantuz/issues"
51
- },
52
- "dependencies": {
53
- "axios": "^1.13.5",
54
- "cors": "^2.8.6",
55
- "cron": "^4.4.0",
56
- "dotenv": "^16.0.0",
57
- "express": "^5.2.1",
58
- "openclaw": "^0.0.1",
59
- "playwright": "^1.58.2",
60
- "sqlite": "^5.1.1",
61
- "sqlite3": "^5.0.2",
62
- "xml2js": "^0.6.2"
63
- },
64
- "devDependencies": {
65
- "eslint": "^8.0.0"
66
- },
67
- "os": [
68
- "darwin",
69
- "linux",
70
- "win32"
71
- ],
72
- "engines": {
73
- "node": ">=18.0.0"
74
- },
75
- "files": [
76
- "cli.js",
77
- "onboard.js",
78
- "core",
79
- "server",
80
- "platforms",
81
- "plugins",
82
- "LICENSE",
83
- "README.md"
84
- ]
1
+ {
2
+ "name": "vantuz",
3
+ "version": "3.3.3",
4
+ "description": "Yapay Zeka Destekli E-Ticaret Yönetim Platformu - 7 Pazaryeri + WhatsApp/Telegram",
5
+ "type": "module",
6
+ "main": "cli.js",
7
+ "bin": {
8
+ "vantuz": "cli.js",
9
+ "vantuz-onboard": "onboard.js"
10
+ },
11
+ "scripts": {
12
+ "start": "node cli.js tui",
13
+ "tui": "node cli.js tui",
14
+ "config": "node cli.js config",
15
+ "status": "node cli.js status",
16
+ "postinstall": "echo \u0027Vantuz kuruldu! Baslatmak icin: npx vantuz-onboard\u0027",
17
+ "test": "node --test",
18
+ "lint": "eslint plugins/"
19
+ },
20
+ "keywords": [
21
+ "ecommerce",
22
+ "e-ticaret",
23
+ "trendyol",
24
+ "hepsiburada",
25
+ "amazon",
26
+ "n11",
27
+ "ciceksepeti",
28
+ "pttavm",
29
+ "pazarama",
30
+ "marketplace",
31
+ "pazaryeri",
32
+ "ai",
33
+ "yapay-zeka",
34
+ "repricer",
35
+ "fiyatlama",
36
+ "whatsapp",
37
+ "telegram",
38
+ "enterprise",
39
+ "gateway",
40
+ "management",
41
+ "cli"
42
+ ],
43
+ "author": "Vantuz",
44
+ "license": "SEE LICENSE IN LICENSE",
45
+ "repository": {
46
+ "type": "git",
47
+ "url": "git+https://github.com/cokdalazimdegil/vantuz.git"
48
+ },
49
+ "homepage": "https://nuricanavsar.com/public/vantuz",
50
+ "bugs": {
51
+ "url": "https://github.com/cokdalazimdegil/vantuz/issues"
52
+ },
53
+ "dependencies": {
54
+ "axios": "^1.13.5",
55
+ "cors": "^2.8.6",
56
+ "cron": "^4.4.0",
57
+ "dotenv": "^16.0.0",
58
+ "express": "^5.2.1",
59
+ "openclaw": "^0.0.1",
60
+ "playwright": "^1.58.2",
61
+ "sqlite": "^5.1.1",
62
+ "sqlite3": "^5.0.2",
63
+ "xml2js": "^0.6.2"
64
+ },
65
+ "devDependencies": {
66
+ "eslint": "^8.0.0"
67
+ },
68
+ "os": [
69
+ "darwin",
70
+ "linux",
71
+ "win32"
72
+ ],
73
+ "engines": {
74
+ "node": "\u003e=18.0.0"
75
+ },
76
+ "files": [
77
+ "cli.js",
78
+ "onboard.js",
79
+ "core",
80
+ "server",
81
+ "platforms",
82
+ "plugins",
83
+ "start.bat",
84
+ "LICENSE",
85
+ "README.md"
86
+ ]
85
87
  }
package/start.bat ADDED
@@ -0,0 +1,33 @@
1
+ @echo off
2
+ title Vantuz Gateway & Engine
3
+ color 0b
4
+
5
+ echo.
6
+ echo V A N T U Z A I
7
+ echo -----------------
8
+ echo System Starting...
9
+ echo.
10
+
11
+ :: 1. Vantuz Gateway Başlat (Arka planda)
12
+ if exist ".openclaw\gateway.cmd" (
13
+ echo [INFO] Starting Vantuz Gateway...
14
+ start /min "Vantuz Gateway" cmd /c ".openclaw\gateway.cmd"
15
+ ) else (
16
+ echo [WARN] Gateway logic not found. Skipping...
17
+ )
18
+
19
+ :: 2. Bekle (Gateway'in açılması için)
20
+ timeout /t 3 >nul
21
+
22
+ :: 3. Vantuz Sunucusunu Başlat (Arka planda)
23
+ echo [INFO] Starting Vantuz API Server...
24
+ start /min "Vantuz Server" node server/app.js
25
+
26
+ :: 4. CLI Arayüzünü Başlat
27
+ echo [INFO] Launching CLI...
28
+ timeout /t 2 >nul
29
+ node cli.js tui
30
+
31
+ echo.
32
+ echo [INFO] System shutdown.
33
+ pause