kentutai-app 1.0.0 → 1.0.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/next-env.d.ts +1 -1
- package/package.json +64 -63
- package/server-error.log +2 -0
- package/server.log +245 -0
- package/tsconfig.tsbuildinfo +1 -0
package/next-env.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="next" />
|
|
2
2
|
/// <reference types="next/image-types/global" />
|
|
3
|
-
import "./.next/
|
|
3
|
+
import "./.next/types/routes.d.ts";
|
|
4
4
|
|
|
5
5
|
// NOTE: This file should not be edited
|
|
6
6
|
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
|
package/package.json
CHANGED
|
@@ -1,65 +1,66 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
2
|
+
"name": "kentutai-app",
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "KentutAI web dashboard",
|
|
5
|
+
"private": false,
|
|
6
|
+
"scripts": {
|
|
7
|
+
"dev": "next dev --webpack --port 20123",
|
|
8
|
+
"build": "next build",
|
|
9
|
+
"build:cli": "powershell -ExecutionPolicy Bypass -File scripts/build-cli.ps1",
|
|
10
|
+
"start": "set PORT=20123 && node .next/standalone/server.js",
|
|
11
|
+
"dev:bun": "bun --bun next dev --webpack --port 20123",
|
|
12
|
+
"build:bun": "bun --bun next build --turbopack",
|
|
13
|
+
"start:bun": "bun ./.next/standalone/server.js",
|
|
14
|
+
"test": "vitest run",
|
|
15
|
+
"test:watch": "vitest"
|
|
16
|
+
},
|
|
17
|
+
"dependencies": {
|
|
18
|
+
"@dnd-kit/core": "^6.3.1",
|
|
19
|
+
"@dnd-kit/modifiers": "^9.0.0",
|
|
20
|
+
"@dnd-kit/sortable": "^10.0.0",
|
|
21
|
+
"@dnd-kit/utilities": "^3.2.2",
|
|
22
|
+
"@monaco-editor/react": "^4.7.0",
|
|
23
|
+
"@xyflow/react": "^12.10.1",
|
|
24
|
+
"bcryptjs": "^3.0.3",
|
|
25
|
+
"confbox": "^0.2.4",
|
|
26
|
+
"date-fns": "^4.3.0",
|
|
27
|
+
"express": "^5.2.1",
|
|
28
|
+
"fs": "^0.0.1-security",
|
|
29
|
+
"http-proxy-middleware": "^3.0.5",
|
|
30
|
+
"jose": "^6.1.3",
|
|
31
|
+
"jspdf": "^4.2.1",
|
|
32
|
+
"jspdf-autotable": "^5.0.8",
|
|
33
|
+
"marked": "^18.0.1",
|
|
34
|
+
"material-symbols": "^0.44.6",
|
|
35
|
+
"monaco-editor": "^0.55.1",
|
|
36
|
+
"next": "^16.1.6",
|
|
37
|
+
"node-forge": "^1.3.3",
|
|
38
|
+
"node-machine-id": "^1.1.12",
|
|
39
|
+
"open": "^11.0.0",
|
|
40
|
+
"ora": "^9.1.0",
|
|
41
|
+
"react": "19.2.4",
|
|
42
|
+
"react-dom": "19.2.4",
|
|
43
|
+
"react-is": "^16.13.1",
|
|
44
|
+
"recharts": "^3.7.0",
|
|
45
|
+
"selfsigned": "^5.5.0",
|
|
46
|
+
"socks-proxy-agent": "^8.0.5",
|
|
47
|
+
"sql.js": "^1.14.1",
|
|
48
|
+
"undici": "^7.19.2",
|
|
49
|
+
"uuid": "^13.0.0",
|
|
50
|
+
"zustand": "^5.0.10"
|
|
51
|
+
},
|
|
52
|
+
"optionalDependencies": {
|
|
53
|
+
"better-sqlite3": "^12.6.2"
|
|
54
|
+
},
|
|
55
|
+
"comment_better_sqlite3": "kept in optionalDependencies so npm install doesn't fail on systems without build tools — sql.js is used as fallback at runtime",
|
|
56
|
+
"devDependencies": {
|
|
57
|
+
"@tailwindcss/postcss": "^4.1.18",
|
|
58
|
+
"@types/react": "19.2.15",
|
|
59
|
+
"case-sensitive-paths-webpack-plugin": "^2.4.0",
|
|
60
|
+
"eslint": "^9",
|
|
61
|
+
"eslint-config-next": "16.1.6",
|
|
62
|
+
"postcss": "^8.5.6",
|
|
63
|
+
"tailwindcss": "^4",
|
|
64
|
+
"vitest": "^4.1.7"
|
|
65
|
+
}
|
|
65
66
|
}
|
package/server-error.log
ADDED
package/server.log
ADDED
|
@@ -0,0 +1,245 @@
|
|
|
1
|
+
▲ Next.js 16.2.6
|
|
2
|
+
- Local: http://localhost:20123
|
|
3
|
+
- Network: http://0.0.0.0:20123
|
|
4
|
+
✓ Ready in 0ms
|
|
5
|
+
[PROXY] Executing for: /dashboard
|
|
6
|
+
[DB] Driver: better-sqlite3 | file: E:\var\lib\9router\db\data.sqlite
|
|
7
|
+
[InitApp] Tunnel was enabled, auto-resuming...
|
|
8
|
+
[Tunnel] safeRestart (startup) — tunnel unreachable [force]
|
|
9
|
+
[Tunnel] enable start (port=20123)
|
|
10
|
+
[Tunnel] killed existing cloudflared
|
|
11
|
+
[PROXY] Executing for: /kentutai-icon.png
|
|
12
|
+
[PROXY] Executing for: /manifest.webmanifest
|
|
13
|
+
[PROXY] Executing for: /api/settings
|
|
14
|
+
[PROXY] Executing for: /api/version
|
|
15
|
+
[PROXY] Executing for: /api/auth/status
|
|
16
|
+
[PROXY] Executing for: /api/keys
|
|
17
|
+
[PROXY] Executing for: /api/tunnel/status
|
|
18
|
+
[PROXY] Executing for: /api/auth/me
|
|
19
|
+
[PROXY] Executing for: /icons/icon-192.svg
|
|
20
|
+
[PROXY] Executing for: /api/settings
|
|
21
|
+
[PROXY] Executing for: /api/settings
|
|
22
|
+
[PROXY] Executing for: /api/version
|
|
23
|
+
[PROXY] Executing for: /api/health
|
|
24
|
+
[PROXY] Executing for: /dashboard
|
|
25
|
+
[PROXY] Executing for: /login
|
|
26
|
+
[Tunnel] cloudflared URL: https://scores-into-dryer-ratios.trycloudflare.com
|
|
27
|
+
[Tunnel] spawned: https://scores-into-dryer-ratios.trycloudflare.com
|
|
28
|
+
[PROXY] Executing for: /api/tunnel/status
|
|
29
|
+
[PROXY] Executing for: /api/tunnel/status
|
|
30
|
+
[PROXY] Executing for: /dashboard/plan
|
|
31
|
+
[PROXY] Executing for: /dashboard/profile
|
|
32
|
+
[PROXY] Executing for: /dashboard/usage
|
|
33
|
+
[PROXY] Executing for: /dashboard/endpoint
|
|
34
|
+
[PROXY] Executing for: /dashboard/plan
|
|
35
|
+
[PROXY] Executing for: /dashboard/usage
|
|
36
|
+
[PROXY] Executing for: /dashboard/endpoint
|
|
37
|
+
[PROXY] Executing for: /dashboard/profile
|
|
38
|
+
[PROXY] Executing for: /dashboard/profile
|
|
39
|
+
[Tunnel] registered shortId=rczjdp publicUrl=https://rrczjdp.abc-tunnel.us
|
|
40
|
+
[PROXY] Executing for: /dashboard/profile
|
|
41
|
+
[PROXY] Executing for: /dashboard/profile
|
|
42
|
+
[PROXY] Executing for: /dashboard/profile
|
|
43
|
+
[PROXY] Executing for: /dashboard/profile
|
|
44
|
+
[PROXY] Executing for: /dashboard
|
|
45
|
+
[PROXY] Executing for: /dashboard
|
|
46
|
+
[PROXY] Executing for: /kentutai-icon.png
|
|
47
|
+
[PROXY] Executing for: /manifest.webmanifest
|
|
48
|
+
[PROXY] Executing for: /api/settings
|
|
49
|
+
[PROXY] Executing for: /api/version
|
|
50
|
+
[PROXY] Executing for: /api/auth/status
|
|
51
|
+
[PROXY] Executing for: /api/tunnel/status
|
|
52
|
+
[PROXY] Executing for: /api/keys
|
|
53
|
+
[PROXY] Executing for: /api/auth/me
|
|
54
|
+
[PROXY] Executing for: /api/settings
|
|
55
|
+
[PROXY] Executing for: /dashboard
|
|
56
|
+
[PROXY] Executing for: /api/settings
|
|
57
|
+
[PROXY] Executing for: /dashboard/plan
|
|
58
|
+
[PROXY] Executing for: /dashboard/profile
|
|
59
|
+
[PROXY] Executing for: /dashboard/usage
|
|
60
|
+
[PROXY] Executing for: /dashboard/endpoint
|
|
61
|
+
[PROXY] Executing for: /dashboard/plan
|
|
62
|
+
[PROXY] Executing for: /api/version
|
|
63
|
+
[PROXY] Executing for: /dashboard/profile
|
|
64
|
+
[PROXY] Executing for: /dashboard/profile
|
|
65
|
+
[PROXY] Executing for: /icon.ico
|
|
66
|
+
[PROXY] Executing for: /dashboard/profile
|
|
67
|
+
[PROXY] Executing for: /icons/icon-192.svg
|
|
68
|
+
[PROXY] Executing for: /dashboard/profile
|
|
69
|
+
[PROXY] Executing for: /dashboard/profile
|
|
70
|
+
[PROXY] Executing for: /dashboard/profile
|
|
71
|
+
[PROXY] Executing for: /dashboard/usage
|
|
72
|
+
[PROXY] Executing for: /dashboard/endpoint
|
|
73
|
+
[PROXY] Executing for: /api/health
|
|
74
|
+
[PROXY] Executing for: /api/health
|
|
75
|
+
[PROXY] Executing for: /api/health
|
|
76
|
+
[Tunnel] cloudflared exit code=1 signal=null
|
|
77
|
+
[PROXY] Executing for: /api/health
|
|
78
|
+
[Tunnel] public URL healthy
|
|
79
|
+
[Tunnel] enable success
|
|
80
|
+
[Tunnel] restart success
|
|
81
|
+
[PROXY] Executing for: /api/health
|
|
82
|
+
[PROXY] Executing for: /api/health
|
|
83
|
+
[PROXY] Executing for: /api/health
|
|
84
|
+
[PROXY] Executing for: /api/health
|
|
85
|
+
[PROXY] Executing for: /api/health
|
|
86
|
+
[PROXY] Executing for: /api/health
|
|
87
|
+
[PROXY] Executing for: /api/health
|
|
88
|
+
[Tunnel] degraded but cooldown active, skip (watchdog)
|
|
89
|
+
[PROXY] Executing for: /api/health
|
|
90
|
+
[PROXY] Executing for: /api/health
|
|
91
|
+
[PROXY] Executing for: /api/health
|
|
92
|
+
[PROXY] Executing for: /api/health
|
|
93
|
+
[PROXY] Executing for: /api/health
|
|
94
|
+
[PROXY] Executing for: /api/health
|
|
95
|
+
[PROXY] Executing for: /api/health
|
|
96
|
+
[PROXY] Executing for: /api/health
|
|
97
|
+
[PROXY] Executing for: /api/health
|
|
98
|
+
[PROXY] Executing for: /api/health
|
|
99
|
+
[PROXY] Executing for: /api/health
|
|
100
|
+
[PROXY] Executing for: /api/health
|
|
101
|
+
[PROXY] Executing for: /api/health
|
|
102
|
+
[PROXY] Executing for: /api/health
|
|
103
|
+
[PROXY] Executing for: /api/health
|
|
104
|
+
[PROXY] Executing for: /api/health
|
|
105
|
+
[PROXY] Executing for: /api/health
|
|
106
|
+
[PROXY] Executing for: /api/health
|
|
107
|
+
[PROXY] Executing for: /api/health
|
|
108
|
+
[PROXY] Executing for: /api/health
|
|
109
|
+
[Tunnel] safeRestart (watchdog) — tunnel unreachable
|
|
110
|
+
[Tunnel] enable start (port=20123)
|
|
111
|
+
[PROXY] Executing for: /api/health
|
|
112
|
+
[PROXY] Executing for: /api/health
|
|
113
|
+
[Tunnel] already running, reuse: https://probe-subdivision-choice-rows.trycloudflare.com
|
|
114
|
+
[Tunnel] restart success
|
|
115
|
+
[PROXY] Executing for: /api/health
|
|
116
|
+
[PROXY] Executing for: /api/health
|
|
117
|
+
[PROXY] Executing for: /api/health
|
|
118
|
+
[PROXY] Executing for: /api/health
|
|
119
|
+
[PROXY] Executing for: /api/health
|
|
120
|
+
[PROXY] Executing for: /api/health
|
|
121
|
+
[PROXY] Executing for: /api/health
|
|
122
|
+
[PROXY] Executing for: /api/health
|
|
123
|
+
[PROXY] Executing for: /api/health
|
|
124
|
+
[PROXY] Executing for: /api/health
|
|
125
|
+
[PROXY] Executing for: /api/health
|
|
126
|
+
[PROXY] Executing for: /api/health
|
|
127
|
+
[PROXY] Executing for: /api/health
|
|
128
|
+
[PROXY] Executing for: /api/health
|
|
129
|
+
[PROXY] Executing for: /api/health
|
|
130
|
+
[PROXY] Executing for: /api/health
|
|
131
|
+
[PROXY] Executing for: /api/health
|
|
132
|
+
[PROXY] Executing for: /api/health
|
|
133
|
+
[PROXY] Executing for: /api/health
|
|
134
|
+
[PROXY] Executing for: /api/health
|
|
135
|
+
[PROXY] Executing for: /api/health
|
|
136
|
+
[PROXY] Executing for: /api/health
|
|
137
|
+
[PROXY] Executing for: /api/health
|
|
138
|
+
[PROXY] Executing for: /api/health
|
|
139
|
+
[PROXY] Executing for: /api/health
|
|
140
|
+
[PROXY] Executing for: /api/health
|
|
141
|
+
[PROXY] Executing for: /api/health
|
|
142
|
+
[PROXY] Executing for: /api/health
|
|
143
|
+
[PROXY] Executing for: /api/health
|
|
144
|
+
[PROXY] Executing for: /api/health
|
|
145
|
+
[PROXY] Executing for: /api/health
|
|
146
|
+
[PROXY] Executing for: /api/health
|
|
147
|
+
[PROXY] Executing for: /api/health
|
|
148
|
+
[PROXY] Executing for: /api/health
|
|
149
|
+
[PROXY] Executing for: /api/health
|
|
150
|
+
[PROXY] Executing for: /api/health
|
|
151
|
+
[PROXY] Executing for: /api/health
|
|
152
|
+
[PROXY] Executing for: /api/health
|
|
153
|
+
[PROXY] Executing for: /api/health
|
|
154
|
+
[PROXY] Executing for: /api/health
|
|
155
|
+
[Tunnel] safeRestart (watchdog) — tunnel unreachable
|
|
156
|
+
[Tunnel] enable start (port=20123)
|
|
157
|
+
[Tunnel] killed existing cloudflared
|
|
158
|
+
[Tunnel] cloudflared URL: https://packet-cancel-invention-freebsd.trycloudflare.com
|
|
159
|
+
[Tunnel] spawned: https://packet-cancel-invention-freebsd.trycloudflare.com
|
|
160
|
+
[Tunnel] registered shortId=rczjdp publicUrl=https://rrczjdp.abc-tunnel.us
|
|
161
|
+
[PROXY] Executing for: /api/health
|
|
162
|
+
[Tunnel] public URL healthy
|
|
163
|
+
[PROXY] Executing for: /api/health
|
|
164
|
+
[Tunnel] direct URL healthy
|
|
165
|
+
[Tunnel] enable success
|
|
166
|
+
[Tunnel] restart success
|
|
167
|
+
[PROXY] Executing for: /api/health
|
|
168
|
+
[Tunnel] degraded but cooldown active, skip (watchdog)
|
|
169
|
+
[PROXY] Executing for: /api/health
|
|
170
|
+
[PROXY] Executing for: /api/health
|
|
171
|
+
[PROXY] Executing for: /api/health
|
|
172
|
+
[PROXY] Executing for: /api/health
|
|
173
|
+
[PROXY] Executing for: /api/health
|
|
174
|
+
[PROXY] Executing for: /api/health
|
|
175
|
+
[PROXY] Executing for: /api/health
|
|
176
|
+
[PROXY] Executing for: /api/health
|
|
177
|
+
[PROXY] Executing for: /api/health
|
|
178
|
+
[PROXY] Executing for: /api/health
|
|
179
|
+
[PROXY] Executing for: /api/health
|
|
180
|
+
[PROXY] Executing for: /api/health
|
|
181
|
+
[PROXY] Executing for: /api/health
|
|
182
|
+
[PROXY] Executing for: /api/health
|
|
183
|
+
[PROXY] Executing for: /api/health
|
|
184
|
+
[PROXY] Executing for: /api/health
|
|
185
|
+
[PROXY] Executing for: /api/health
|
|
186
|
+
[PROXY] Executing for: /api/health
|
|
187
|
+
[PROXY] Executing for: /api/health
|
|
188
|
+
[PROXY] Executing for: /api/health
|
|
189
|
+
[PROXY] Executing for: /api/health
|
|
190
|
+
[PROXY] Executing for: /api/health
|
|
191
|
+
[PROXY] Executing for: /api/health
|
|
192
|
+
[PROXY] Executing for: /api/health
|
|
193
|
+
[PROXY] Executing for: /api/health
|
|
194
|
+
[PROXY] Executing for: /api/health
|
|
195
|
+
[PROXY] Executing for: /api/health
|
|
196
|
+
[PROXY] Executing for: /api/health
|
|
197
|
+
[PROXY] Executing for: /_next/webpack-hmr
|
|
198
|
+
[PROXY] Executing for: /api/health
|
|
199
|
+
[PROXY] Executing for: /api/health
|
|
200
|
+
[PROXY] Executing for: /api/health
|
|
201
|
+
[PROXY] Executing for: /api/health
|
|
202
|
+
[PROXY] Executing for: /api/health
|
|
203
|
+
[PROXY] Executing for: /api/health
|
|
204
|
+
[PROXY] Executing for: /api/health
|
|
205
|
+
[PROXY] Executing for: /api/health
|
|
206
|
+
[PROXY] Executing for: /api/health
|
|
207
|
+
[PROXY] Executing for: /api/health
|
|
208
|
+
[PROXY] Executing for: /api/health
|
|
209
|
+
[PROXY] Executing for: /api/health
|
|
210
|
+
[PROXY] Executing for: /api/health
|
|
211
|
+
[PROXY] Executing for: /api/health
|
|
212
|
+
[PROXY] Executing for: /api/health
|
|
213
|
+
[PROXY] Executing for: /api/health
|
|
214
|
+
[PROXY] Executing for: /api/health
|
|
215
|
+
[PROXY] Executing for: /api/health
|
|
216
|
+
[PROXY] Executing for: /api/health
|
|
217
|
+
[PROXY] Executing for: /api/health
|
|
218
|
+
[PROXY] Executing for: /api/health
|
|
219
|
+
[PROXY] Executing for: /api/health
|
|
220
|
+
[PROXY] Executing for: /api/health
|
|
221
|
+
[PROXY] Executing for: /api/health
|
|
222
|
+
[PROXY] Executing for: /api/health
|
|
223
|
+
[PROXY] Executing for: /api/health
|
|
224
|
+
[PROXY] Executing for: /api/health
|
|
225
|
+
[PROXY] Executing for: /api/health
|
|
226
|
+
[PROXY] Executing for: /api/health
|
|
227
|
+
[PROXY] Executing for: /api/health
|
|
228
|
+
[PROXY] Executing for: /api/health
|
|
229
|
+
[PROXY] Executing for: /api/health
|
|
230
|
+
[PROXY] Executing for: /api/health
|
|
231
|
+
[PROXY] Executing for: /api/health
|
|
232
|
+
[PROXY] Executing for: /api/health
|
|
233
|
+
[PROXY] Executing for: /api/health
|
|
234
|
+
[PROXY] Executing for: /api/health
|
|
235
|
+
[PROXY] Executing for: /api/health
|
|
236
|
+
[PROXY] Executing for: /api/health
|
|
237
|
+
[PROXY] Executing for: /api/health
|
|
238
|
+
[PROXY] Executing for: /api/health
|
|
239
|
+
[PROXY] Executing for: /api/health
|
|
240
|
+
[PROXY] Executing for: /api/health
|
|
241
|
+
[PROXY] Executing for: /api/health
|
|
242
|
+
[PROXY] Executing for: /api/health
|
|
243
|
+
[PROXY] Executing for: /api/health
|
|
244
|
+
[PROXY] Executing for: /api/health
|
|
245
|
+
[PROXY] Executing for: /api/health
|