@wenathlan/saddle 1.8.6 → 1.8.7
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/README.md +114 -103
- package/docs/actionsincident.md +4 -0
- package/docs/release.md +5 -5
- package/docs/releaseassets.md +1 -1
- package/docs/securityaudit-1.8.7.md +21 -0
- package/extension/manifest.json +1 -1
- package/package.json +2 -3
- package/readme.txt +0 -163
- package/scrape/package-lock.json +0 -9397
- package/scrape/package.json +0 -1420
package/scrape/package.json
DELETED
|
@@ -1,1420 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@devthink/webscrape",
|
|
3
|
-
"version": "2.0.0",
|
|
4
|
-
"description": "Universal AI-powered web scraping toolkit — works with/without browser, Node.js, edge runtimes, AI agents, and more",
|
|
5
|
-
"license": "MIT",
|
|
6
|
-
"author": "DevThink",
|
|
7
|
-
"type": "module",
|
|
8
|
-
"main": "./dist/index.js",
|
|
9
|
-
"types": "./dist/index.d.ts",
|
|
10
|
-
"sideEffects": false,
|
|
11
|
-
"bin": {
|
|
12
|
-
"webscrape": "./dist/cli.js"
|
|
13
|
-
},
|
|
14
|
-
"exports": {
|
|
15
|
-
".": {
|
|
16
|
-
"types": "./dist/index.d.ts",
|
|
17
|
-
"import": "./dist/index.js",
|
|
18
|
-
"default": "./dist/index.js"
|
|
19
|
-
},
|
|
20
|
-
"./fetch": {
|
|
21
|
-
"types": "./dist/fetch.d.ts",
|
|
22
|
-
"import": "./dist/fetch.js"
|
|
23
|
-
},
|
|
24
|
-
"./browser": {
|
|
25
|
-
"types": "./dist/browser.d.ts",
|
|
26
|
-
"import": "./dist/browser.js"
|
|
27
|
-
},
|
|
28
|
-
"./scrape": {
|
|
29
|
-
"types": "./dist/scrape.d.ts",
|
|
30
|
-
"import": "./dist/scrape.js"
|
|
31
|
-
},
|
|
32
|
-
"./extract": {
|
|
33
|
-
"types": "./dist/extract.d.ts",
|
|
34
|
-
"import": "./dist/extract.js"
|
|
35
|
-
},
|
|
36
|
-
"./serialize": {
|
|
37
|
-
"types": "./dist/serialize.d.ts",
|
|
38
|
-
"import": "./dist/serialize.js"
|
|
39
|
-
},
|
|
40
|
-
"./agent": {
|
|
41
|
-
"types": "./dist/agent.d.ts",
|
|
42
|
-
"import": "./dist/agent.js"
|
|
43
|
-
},
|
|
44
|
-
"./server": {
|
|
45
|
-
"types": "./dist/server.d.ts",
|
|
46
|
-
"import": "./dist/server.js"
|
|
47
|
-
},
|
|
48
|
-
"./cli": {
|
|
49
|
-
"import": "./dist/cli.js"
|
|
50
|
-
},
|
|
51
|
-
"./types": {
|
|
52
|
-
"types": "./dist/types.d.ts",
|
|
53
|
-
"import": "./dist/types.js"
|
|
54
|
-
}
|
|
55
|
-
},
|
|
56
|
-
"files": [
|
|
57
|
-
"dist",
|
|
58
|
-
"web/",
|
|
59
|
-
"docs/",
|
|
60
|
-
"README.md",
|
|
61
|
-
"*.ts",
|
|
62
|
-
"*.tsx",
|
|
63
|
-
"ink-components/"
|
|
64
|
-
],
|
|
65
|
-
"scripts": {
|
|
66
|
-
"build": "tsc --noEmit && vite build",
|
|
67
|
-
"dev": "vite",
|
|
68
|
-
"test": "vitest run",
|
|
69
|
-
"test:watch": "vitest",
|
|
70
|
-
"test:coverage": "vitest run --coverage",
|
|
71
|
-
"lint": "biome check .",
|
|
72
|
-
"lint:fix": "biome check --write .",
|
|
73
|
-
"typecheck": "tsc --noEmit",
|
|
74
|
-
"check": "npm run typecheck && npm run lint && npm run test",
|
|
75
|
-
"validate": "publint && attw",
|
|
76
|
-
"preview": "vite preview"
|
|
77
|
-
},
|
|
78
|
-
"engines": {
|
|
79
|
-
"node": ">=26.2.0",
|
|
80
|
-
"bun": ">=1.4.0"
|
|
81
|
-
},
|
|
82
|
-
"dependencies": {
|
|
83
|
-
"@ai-sdk/anthropic": "^3.0.85",
|
|
84
|
-
"@ai-sdk/assemblyai": "^2.0.36",
|
|
85
|
-
"@ai-sdk/azure": "^3.0.77",
|
|
86
|
-
"@ai-sdk/cohere": "^3.0.39",
|
|
87
|
-
"@ai-sdk/deepgram": "^2.0.36",
|
|
88
|
-
"@ai-sdk/deepseek": "^2.0.39",
|
|
89
|
-
"@ai-sdk/elevenlabs": "^2.0.36",
|
|
90
|
-
"@ai-sdk/fal": "^2.0.37",
|
|
91
|
-
"@ai-sdk/fireworks": "^2.0.57",
|
|
92
|
-
"@ai-sdk/gladia": "^2.0.36",
|
|
93
|
-
"@ai-sdk/google": "^3.0.83",
|
|
94
|
-
"@ai-sdk/groq": "^3.0.42",
|
|
95
|
-
"@ai-sdk/hume": "^2.0.36",
|
|
96
|
-
"@ai-sdk/langchain": "^2.0.217",
|
|
97
|
-
"@ai-sdk/lmnt": "^2.0.36",
|
|
98
|
-
"@ai-sdk/luma": "^2.0.36",
|
|
99
|
-
"@ai-sdk/mistral": "^3.0.40",
|
|
100
|
-
"@ai-sdk/openai": "^3.0.74",
|
|
101
|
-
"@ai-sdk/perplexity": "^3.0.36",
|
|
102
|
-
"@ai-sdk/provider": "^3.0.10",
|
|
103
|
-
"@ai-sdk/react": "^3.0.211",
|
|
104
|
-
"@ai-sdk/replicate": "^2.0.36",
|
|
105
|
-
"@ai-sdk/revai": "^2.0.36",
|
|
106
|
-
"@ai-sdk/svelte": "^4.0.209",
|
|
107
|
-
"@ai-sdk/togetherai": "^2.0.56",
|
|
108
|
-
"@ai-sdk/ui-utils": "^1.2.11",
|
|
109
|
-
"@ai-sdk/vercel": "^2.0.53",
|
|
110
|
-
"@ai-sdk/vue": "^3.0.209",
|
|
111
|
-
"@ai-sdk/xai": "^3.0.96",
|
|
112
|
-
"@arethetypeswrong/cli": "^0.18.4",
|
|
113
|
-
"@biomejs/biome": "^2.5.1",
|
|
114
|
-
"@blessed/neo-blessed": "^1.0.0",
|
|
115
|
-
"@char-motion/react": "^0.3.1",
|
|
116
|
-
"@dnsquery/dns-packet": "^6.1.1",
|
|
117
|
-
"@eslint/js": "^10.0.1",
|
|
118
|
-
"@ffmpeg/ffmpeg": "^0.12.15",
|
|
119
|
-
"@ffmpeg/util": "^0.12.2",
|
|
120
|
-
"@heroicons/react": "^2.2.0",
|
|
121
|
-
"@hey-api/openapi-ts": "^0.99.0",
|
|
122
|
-
"@hookform/resolvers": "^5.4.0",
|
|
123
|
-
"@iconify/react": "^6.0.2",
|
|
124
|
-
"@inkjs/ui": "^2.0.0",
|
|
125
|
-
"@inkui-cli/accordion": "^0.2.0",
|
|
126
|
-
"@inkui-cli/autocomplete": "^0.2.0",
|
|
127
|
-
"@inkui-cli/cli": "^0.3.0",
|
|
128
|
-
"@inkui-cli/code-block": "^0.2.0",
|
|
129
|
-
"@inkui-cli/diff-view": "^0.2.0",
|
|
130
|
-
"@inkui-cli/gauge": "^0.2.0",
|
|
131
|
-
"@inkui-cli/hooks": "^0.2.0",
|
|
132
|
-
"@inkui-cli/inkui": "^0.5.0",
|
|
133
|
-
"@inkui-cli/json-viewer": "^0.2.0",
|
|
134
|
-
"@inkui-cli/markdown": "^0.2.0",
|
|
135
|
-
"@inkui-cli/panel": "^0.2.0",
|
|
136
|
-
"@inkui-cli/scroll-area": "^0.2.0",
|
|
137
|
-
"@inkui-cli/sparkline": "^0.2.0",
|
|
138
|
-
"@inkui-cli/stepper": "^0.2.0",
|
|
139
|
-
"@inkui-cli/streaming-text": "^0.2.0",
|
|
140
|
-
"@inkui-cli/tabs": "^0.2.0",
|
|
141
|
-
"@inkui-cli/token-counter": "^0.2.0",
|
|
142
|
-
"@inkui-cli/typewriter": "^0.2.0",
|
|
143
|
-
"@inquirer/core": "^11.2.1",
|
|
144
|
-
"@inquirer/expand": "^5.1.1",
|
|
145
|
-
"@inquirer/input": "^5.1.2",
|
|
146
|
-
"@inquirer/prompts": "^8.5.2",
|
|
147
|
-
"@jitl/opentui-core": "^0.4.0",
|
|
148
|
-
"@jitl/opentui-core-linux-x64": "^0.4.0",
|
|
149
|
-
"@jitl/opentui-react": "^0.4.0",
|
|
150
|
-
"@jridgewell/remapping": "^2.3.5",
|
|
151
|
-
"@kud/ink-ui": "^0.1.1",
|
|
152
|
-
"@mozilla/readability": "^0.6.0",
|
|
153
|
-
"@opencode-ai/plugin": "^1.17.9",
|
|
154
|
-
"@opencode-ai/sdk": "^1.17.9",
|
|
155
|
-
"@opentui-ui/core": "^0.0.2",
|
|
156
|
-
"@opentui-ui/solid": "^0.0.2",
|
|
157
|
-
"@opentui-ui/toast": "^0.0.5",
|
|
158
|
-
"@opentui/core": "^0.4.1",
|
|
159
|
-
"@opentui/extras": "^0.0.0-20260419-49f00f96",
|
|
160
|
-
"@opentui/keymap": "^0.4.1",
|
|
161
|
-
"@opentui/react": "^0.4.1",
|
|
162
|
-
"@opentui/solid": "^0.4.1",
|
|
163
|
-
"@oxog/dns": "^1.0.0",
|
|
164
|
-
"@phosphor-icons/react": "^2.1.10",
|
|
165
|
-
"@playwright/test": "^1.61.0",
|
|
166
|
-
"@resvg/resvg-js": "^2.6.2",
|
|
167
|
-
"@sinclair/typebox": "^0.34.49",
|
|
168
|
-
"@sister.software/asciify": "^3.1.3",
|
|
169
|
-
"@skillkit/tui": "^1.24.0",
|
|
170
|
-
"@standard-schema/spec": "^1.1.0",
|
|
171
|
-
"@standard-schema/utils": "^0.3.0",
|
|
172
|
-
"@stream-io/audio-filters-web": "^0.8.2",
|
|
173
|
-
"@stream-io/escape-string-regexp": "^5.0.1",
|
|
174
|
-
"@stream-io/feeds-client": "^2.4.0",
|
|
175
|
-
"@stream-io/feeds-react-sdk": "^1.0.16",
|
|
176
|
-
"@stream-io/flat-list-mvcp": "^0.10.3",
|
|
177
|
-
"@stream-io/logger": "^2.0.0",
|
|
178
|
-
"@stream-io/node-sdk": "^0.7.59",
|
|
179
|
-
"@stream-io/openai-realtime-api": "^0.3.3",
|
|
180
|
-
"@stream-io/react-native-callingx": "^0.5.1",
|
|
181
|
-
"@stream-io/stream-chat-css": "^5.16.1",
|
|
182
|
-
"@stream-io/transliterate": "^1.5.5",
|
|
183
|
-
"@stream-io/video-client": "^1.54.0",
|
|
184
|
-
"@stream-io/video-filters-web": "^0.7.5",
|
|
185
|
-
"@stream-io/video-react-bindings": "^1.17.0",
|
|
186
|
-
"@stream-io/video-react-native-sdk": "^1.39.0",
|
|
187
|
-
"@stream-io/video-react-sdk": "^1.38.0",
|
|
188
|
-
"@stream-io/video-styling": "^1.14.1",
|
|
189
|
-
"@stream-io/worker-timer": "^1.2.5",
|
|
190
|
-
"@tabler/icons-react": "^3.44.0",
|
|
191
|
-
"@tailwindcss/vite": "^4.3.1",
|
|
192
|
-
"@tauri-apps/api": "^2.11.1",
|
|
193
|
-
"@tauri-apps/cli": "^2.11.3",
|
|
194
|
-
"@tauri-apps/plugin-process": "^2.3.1",
|
|
195
|
-
"@tauri-apps/plugin-shell": "^2.3.5",
|
|
196
|
-
"@teaui/cli": "^1.14.14",
|
|
197
|
-
"@teaui/image": "^1.14.14",
|
|
198
|
-
"@teaui/react": "^1.14.14",
|
|
199
|
-
"@telepat/ansie": "^0.1.2",
|
|
200
|
-
"@termdraw/opentui": "^0.4.1",
|
|
201
|
-
"@testing-library/dom": "^10.4.1",
|
|
202
|
-
"@testing-library/jest-dom": "^6.9.1",
|
|
203
|
-
"@testing-library/react": "^16.3.2",
|
|
204
|
-
"@testing-library/user-event": "^14.6.1",
|
|
205
|
-
"@tonejs/piano": "^0.2.1",
|
|
206
|
-
"@tsconfig/node22": "^22.0.5",
|
|
207
|
-
"@tsconfig/node26": "^26.0.0",
|
|
208
|
-
"@types/blessed": "^0.1.27",
|
|
209
|
-
"@types/bun": "^1.3.14",
|
|
210
|
-
"@types/cheerio": "^1.0.0",
|
|
211
|
-
"@types/cors": "^2.8.19",
|
|
212
|
-
"@types/cross-spawn": "^6.0.6",
|
|
213
|
-
"@types/dompurify": "^3.2.0",
|
|
214
|
-
"@types/express": "^5.0.6",
|
|
215
|
-
"@types/fluent-ffmpeg": "^2.1.28",
|
|
216
|
-
"@types/howler": "^2.2.13",
|
|
217
|
-
"@types/ink-spinner": "^3.0.5",
|
|
218
|
-
"@types/jsdom": "^28.0.3",
|
|
219
|
-
"@types/jsonwebtoken": "^9.0.10",
|
|
220
|
-
"@types/node": "^26.0.0",
|
|
221
|
-
"@types/nodemon": "^3.1.1",
|
|
222
|
-
"@types/react": "^19.2.17",
|
|
223
|
-
"@types/react-dom": "^19.2.3",
|
|
224
|
-
"@types/react-reconciler": "^0.33.0",
|
|
225
|
-
"@types/terminal-kit": "^2.5.7",
|
|
226
|
-
"@types/turndown": "^5.0.6",
|
|
227
|
-
"@types/video.js": "^7.3.58",
|
|
228
|
-
"@typeschema/core": "^0.14.0",
|
|
229
|
-
"@typeschema/main": "^0.14.1",
|
|
230
|
-
"@typeschema/zod": "^0.14.0",
|
|
231
|
-
"@typescript-eslint/eslint-plugin": "^8.62.0",
|
|
232
|
-
"@typescript-eslint/parser": "^8.62.0",
|
|
233
|
-
"@typescript/native-preview": "^7.0.0-dev.20260623.1",
|
|
234
|
-
"@videojs/http-streaming": "^3.17.4",
|
|
235
|
-
"@vinejs/vine": "^4.4.0",
|
|
236
|
-
"@vitejs/plugin-react": "^6.0.3",
|
|
237
|
-
"@vitest/coverage-v8": "^4.1.9",
|
|
238
|
-
"@vybestack/opentui-react": "^0.1.62",
|
|
239
|
-
"@xenova/transformers": "^2.17.2",
|
|
240
|
-
"acme-client": "^5.4.0",
|
|
241
|
-
"ai": "^6.0.209",
|
|
242
|
-
"ajv": "^8.20.0",
|
|
243
|
-
"ajv-errors": "^3.0.0",
|
|
244
|
-
"ajv-formats": "^3.0.1",
|
|
245
|
-
"alameda": "^1.4.0",
|
|
246
|
-
"ansi-escapes": "^7.3.0",
|
|
247
|
-
"arktype": "^2.2.1",
|
|
248
|
-
"ascii-art": "^2.8.5",
|
|
249
|
-
"asciichart": "^1.5.25",
|
|
250
|
-
"asciify-engine": "^1.0.118",
|
|
251
|
-
"asciify-image": "^0.1.10",
|
|
252
|
-
"asciinema-player": "^3.16.0",
|
|
253
|
-
"ata-validator": "^0.21.0",
|
|
254
|
-
"aubiojs": "^0.2.1",
|
|
255
|
-
"audio-buffer-utils": "^5.1.2",
|
|
256
|
-
"audio-decode": "^3.11.0",
|
|
257
|
-
"audiobuffer-to-wav": "^1.0.0",
|
|
258
|
-
"beat-detection": "^1.1.0",
|
|
259
|
-
"better-sqlite3": "^12.11.1",
|
|
260
|
-
"bitwise": "^2.2.1",
|
|
261
|
-
"blessed": "^0.1.81",
|
|
262
|
-
"bns": "^0.16.0",
|
|
263
|
-
"bonjour-service": "^1.4.1",
|
|
264
|
-
"boxen": "^8.0.1",
|
|
265
|
-
"buffer": "^6.0.3",
|
|
266
|
-
"cfonts": "^3.3.1",
|
|
267
|
-
"chalk": "^5.6.2",
|
|
268
|
-
"chalk-animation": "^2.0.3",
|
|
269
|
-
"check-export-map": "^1.3.1",
|
|
270
|
-
"cheerio": "^1.2.0",
|
|
271
|
-
"chroma-js": "^3.2.0",
|
|
272
|
-
"cidr-tools": "^12.1.1",
|
|
273
|
-
"class-transformer": "^0.5.1",
|
|
274
|
-
"class-validator": "^0.15.1",
|
|
275
|
-
"cli-boxes": "^4.0.1",
|
|
276
|
-
"cli-cursor": "^5.0.0",
|
|
277
|
-
"cli-panel": "^1.0.0-beta.4",
|
|
278
|
-
"cli-spinners": "^3.4.0",
|
|
279
|
-
"cli-table3": "^0.6.5",
|
|
280
|
-
"clsx": "^2.1.1",
|
|
281
|
-
"comlink": "^4.4.2",
|
|
282
|
-
"commander": "^15.0.0",
|
|
283
|
-
"compiled": "^1.19.1",
|
|
284
|
-
"compromise": "^14.15.1",
|
|
285
|
-
"computed-types": "^1.11.2",
|
|
286
|
-
"concurrently": "^10.0.3",
|
|
287
|
-
"confbox": "^0.2.4",
|
|
288
|
-
"cors": "^2.8.6",
|
|
289
|
-
"cosmiconfig": "^9.0.2",
|
|
290
|
-
"cross-env": "^10.1.0",
|
|
291
|
-
"cross-spawn": "^7.0.6",
|
|
292
|
-
"d3": "^7.9.0",
|
|
293
|
-
"dashjs": "^5.2.0",
|
|
294
|
-
"data-validator": "^1.2.1",
|
|
295
|
-
"demucs-web": "^1.0.2",
|
|
296
|
-
"dns-client": "^0.0.5",
|
|
297
|
-
"dns-packet": "^5.6.1",
|
|
298
|
-
"dns-query": "^0.11.2",
|
|
299
|
-
"dns-zonefile": "^0.3.2",
|
|
300
|
-
"dns2": "^3.0.0",
|
|
301
|
-
"dnssd-advertise": "^1.1.6",
|
|
302
|
-
"dnssec-server": "^0.1.8",
|
|
303
|
-
"dohdec": "^8.0.0",
|
|
304
|
-
"dompurify": "^3.4.11",
|
|
305
|
-
"drawille-canvas": "^1.2.1",
|
|
306
|
-
"dsp.js": "^1.0.1",
|
|
307
|
-
"effect": "^3.21.4",
|
|
308
|
-
"emittery": "^2.0.0",
|
|
309
|
-
"enhanced-resolve": "^5.24.0",
|
|
310
|
-
"eslint": "^10.5.0",
|
|
311
|
-
"eslint-plugin-react": "^7.37.5",
|
|
312
|
-
"eslint-plugin-react-hooks": "^7.1.1",
|
|
313
|
-
"eslint-plugin-react-refresh": "^0.5.3",
|
|
314
|
-
"essentia.js": "^0.1.3",
|
|
315
|
-
"eventemitter3": "^5.0.4",
|
|
316
|
-
"express": "^5.2.1",
|
|
317
|
-
"fast-deep-equal": "^3.1.3",
|
|
318
|
-
"fast-fifo": "^1.3.2",
|
|
319
|
-
"fft-js": "^0.0.12",
|
|
320
|
-
"fft-windowing": "^0.1.4",
|
|
321
|
-
"fft.js": "^4.0.4",
|
|
322
|
-
"figlet": "^1.11.0",
|
|
323
|
-
"figlet-cli": "^0.3.0",
|
|
324
|
-
"figures": "^6.1.0",
|
|
325
|
-
"file-saver": "^2.0.5",
|
|
326
|
-
"fluent-ffmpeg": "^2.1.3",
|
|
327
|
-
"fluentvalidation-ts": "^5.0.0",
|
|
328
|
-
"flv.js": "^1.6.2",
|
|
329
|
-
"fontverter": "^2.0.0",
|
|
330
|
-
"fp-ts": "^2.16.11",
|
|
331
|
-
"fraction.js": "^5.3.4",
|
|
332
|
-
"framer-motion": "^12.41.0",
|
|
333
|
-
"fuzzysort": "^3.1.0",
|
|
334
|
-
"gh-pages": "^6.3.0",
|
|
335
|
-
"glitch-text": "^1.6.1",
|
|
336
|
-
"globals": "^17.7.0",
|
|
337
|
-
"gradient-string": "^3.0.0",
|
|
338
|
-
"helmet": "^8.2.0",
|
|
339
|
-
"hls.js": "^1.6.16",
|
|
340
|
-
"hono": "^4.12.27",
|
|
341
|
-
"howler": "^2.2.4",
|
|
342
|
-
"hsd": "^8.0.0",
|
|
343
|
-
"http-proxy-agent": "^9.1.0",
|
|
344
|
-
"https-proxy-agent": "^9.1.0",
|
|
345
|
-
"husky": "^9.1.7",
|
|
346
|
-
"hyperdht": "^6.32.0",
|
|
347
|
-
"idb": "^8.0.3",
|
|
348
|
-
"idb-keyval": "^6.2.5",
|
|
349
|
-
"image-and-video-to-ascii": "^1.0.4",
|
|
350
|
-
"image-to-ascii": "^3.3.0",
|
|
351
|
-
"image-to-braille": "^0.0.3",
|
|
352
|
-
"immer": "^11.1.8",
|
|
353
|
-
"inherits": "^2.0.4",
|
|
354
|
-
"ink": "^7.1.0",
|
|
355
|
-
"ink-ascii": "^0.0.4",
|
|
356
|
-
"ink-big-text": "^2.0.0",
|
|
357
|
-
"ink-box": "^2.0.0",
|
|
358
|
-
"ink-gradient": "^4.0.1",
|
|
359
|
-
"ink-link": "^5.0.0",
|
|
360
|
-
"ink-spinner": "^5.0.0",
|
|
361
|
-
"inquirer": "^14.0.2",
|
|
362
|
-
"io-ts": "^2.2.22",
|
|
363
|
-
"io-ts-types": "^0.5.19",
|
|
364
|
-
"ip-address": "^10.2.0",
|
|
365
|
-
"joi": "^18.2.3",
|
|
366
|
-
"jsdom": "^29.1.1",
|
|
367
|
-
"json-schema-to-zod": "^2.8.1",
|
|
368
|
-
"json5": "^2.2.3",
|
|
369
|
-
"jsonata": "^2.2.1",
|
|
370
|
-
"jsonc-parser": "^3.3.1",
|
|
371
|
-
"jsonwebtoken": "^9.0.3",
|
|
372
|
-
"jszip": "^3.10.1",
|
|
373
|
-
"jwt-decode": "^4.0.0",
|
|
374
|
-
"keyv": "^5.6.0",
|
|
375
|
-
"kokoro-js": "^1.2.1",
|
|
376
|
-
"kolorist": "^1.8.0",
|
|
377
|
-
"lamejs": "^1.2.1",
|
|
378
|
-
"lefthook": "^2.1.9",
|
|
379
|
-
"lint-staged": "^17.0.8",
|
|
380
|
-
"listr2": "^10.2.1",
|
|
381
|
-
"lodash-es": "^4.18.1",
|
|
382
|
-
"log-symbols": "^7.0.1",
|
|
383
|
-
"log-update": "^8.0.0",
|
|
384
|
-
"lru-cache": "^11.5.1",
|
|
385
|
-
"lucide-react": "^1.21.0",
|
|
386
|
-
"mammoth": "^1.12.0",
|
|
387
|
-
"marked": "^18.0.5",
|
|
388
|
-
"median-quickselect": "^1.0.1",
|
|
389
|
-
"memoize-one": "^6.0.0",
|
|
390
|
-
"meyda": "^5.6.3",
|
|
391
|
-
"microbundle": "^0.15.1",
|
|
392
|
-
"midi-file": "^1.2.4",
|
|
393
|
-
"ml-matrix": "^6.13.0",
|
|
394
|
-
"monocle-ts": "^2.3.13",
|
|
395
|
-
"mp4box": "^2.4.1",
|
|
396
|
-
"multer": "^2.2.0",
|
|
397
|
-
"music-metadata": "^11.13.0",
|
|
398
|
-
"music-metadata-browser": "^2.5.11",
|
|
399
|
-
"musicbrainz-api": "^1.2.1",
|
|
400
|
-
"mysql2": "^3.22.5",
|
|
401
|
-
"nanocolors": "^0.2.13",
|
|
402
|
-
"netcat": "^1.5.0",
|
|
403
|
-
"newtype-ts": "^0.3.5",
|
|
404
|
-
"node-config": "^0.0.2",
|
|
405
|
-
"node-forge": "^1.4.0",
|
|
406
|
-
"node-vibrant": "^4.0.4",
|
|
407
|
-
"nodemon": "^3.1.14",
|
|
408
|
-
"nope-validator": "^1.2.2",
|
|
409
|
-
"normalize-url": "^9.0.1",
|
|
410
|
-
"npm-run-all": "^4.1.5",
|
|
411
|
-
"oh-my-logo": "^0.5.0",
|
|
412
|
-
"once": "^1.4.0",
|
|
413
|
-
"onnxruntime": "^1.7.0",
|
|
414
|
-
"onnxruntime-common": "^1.27.0",
|
|
415
|
-
"onnxruntime-node": "^1.27.0",
|
|
416
|
-
"onnxruntime-react-native": "^1.24.3",
|
|
417
|
-
"onnxruntime-web": "^1.27.0",
|
|
418
|
-
"openapi-fetch": "^0.17.0",
|
|
419
|
-
"openapi-typescript": "^7.13.0",
|
|
420
|
-
"ora": "^9.4.1",
|
|
421
|
-
"p-limit": "^7.3.0",
|
|
422
|
-
"p-queue": "^9.3.0",
|
|
423
|
-
"p-retry": "^8.0.0",
|
|
424
|
-
"p-timeout": "^7.0.1",
|
|
425
|
-
"pdfjs-dist": "^6.0.227",
|
|
426
|
-
"pi-tui": "^0.0.1",
|
|
427
|
-
"picocolors": "^1.1.1",
|
|
428
|
-
"pitch-detect": "^0.0.2",
|
|
429
|
-
"pitchfinder": "^2.3.4",
|
|
430
|
-
"pitchy": "^4.1.0",
|
|
431
|
-
"playwright": "^1.61.0",
|
|
432
|
-
"pngjs": "^7.0.0",
|
|
433
|
-
"publint": "^0.3.21",
|
|
434
|
-
"quick-lru": "^7.3.0",
|
|
435
|
-
"rc-config-loader": "^4.1.4",
|
|
436
|
-
"rdapper": "^0.13.0",
|
|
437
|
-
"react": "^19.2.7",
|
|
438
|
-
"react-ascii-text": "^0.0.6",
|
|
439
|
-
"react-devtools-core": "^7.0.1",
|
|
440
|
-
"react-dom": "^19.2.7",
|
|
441
|
-
"react-feather": "^2.0.10",
|
|
442
|
-
"react-hook-form": "^7.80.0",
|
|
443
|
-
"react-icons": "^5.6.0",
|
|
444
|
-
"react-reconciler": "^0.33.0",
|
|
445
|
-
"readable-stream": "^4.7.0",
|
|
446
|
-
"reflect-metadata": "^0.2.2",
|
|
447
|
-
"remeda": "^2.39.0",
|
|
448
|
-
"robots-parser": "^3.0.1",
|
|
449
|
-
"rollup": "^4.62.2",
|
|
450
|
-
"safe-buffer": "^5.2.1",
|
|
451
|
-
"scheduler": "^0.27.0",
|
|
452
|
-
"selfsigned": "^5.5.0",
|
|
453
|
-
"sharp": "^0.35.2",
|
|
454
|
-
"shifty": "^3.0.6",
|
|
455
|
-
"silvery": "^0.21.0",
|
|
456
|
-
"simple-statistics": "^7.9.0",
|
|
457
|
-
"sitemapper": "^4.1.6",
|
|
458
|
-
"socket.io": "^4.8.3",
|
|
459
|
-
"socket.io-client": "^4.8.3",
|
|
460
|
-
"socks-proxy-agent": "^10.1.0",
|
|
461
|
-
"soundtouchjs": "^0.3.0",
|
|
462
|
-
"spectrogram-js": "^1.1.2",
|
|
463
|
-
"stdout-update": "^4.0.1",
|
|
464
|
-
"strip-json-comments": "^5.0.3",
|
|
465
|
-
"superstruct": "^2.0.2",
|
|
466
|
-
"swagger-jsdoc": "^6.3.0",
|
|
467
|
-
"swagger-ui-express": "^5.0.1",
|
|
468
|
-
"tailwind-merge": "^3.6.0",
|
|
469
|
-
"tailwindcss": "^4.3.1",
|
|
470
|
-
"tangerine": "^2.1.3",
|
|
471
|
-
"terminal-canvas": "^3.1.2",
|
|
472
|
-
"terminal-image": "^4.3.0",
|
|
473
|
-
"terminal-kit": "^3.1.2",
|
|
474
|
-
"terminal-kit-plugins": "^1.1.0",
|
|
475
|
-
"terminalizer": "^0.12.0",
|
|
476
|
-
"tesseract.js": "^7.0.0",
|
|
477
|
-
"through2": "^5.0.3",
|
|
478
|
-
"tinyrainbow": "^3.1.0",
|
|
479
|
-
"tone": "^15.1.22",
|
|
480
|
-
"toonify": "^1.0.0",
|
|
481
|
-
"ts-node": "^10.9.2",
|
|
482
|
-
"ts-pattern": "^5.9.0",
|
|
483
|
-
"turndown": "^7.2.4",
|
|
484
|
-
"turndown-plugin-gfm": "^1.0.2",
|
|
485
|
-
"typanion": "^3.14.0",
|
|
486
|
-
"typebox": "^1.3.0",
|
|
487
|
-
"typescript": "^6.0.3",
|
|
488
|
-
"typescript-eslint": "^8.62.0",
|
|
489
|
-
"unplugin-icons": "^23.0.1",
|
|
490
|
-
"util-deprecate": "^1.0.2",
|
|
491
|
-
"valibot": "^1.4.1",
|
|
492
|
-
"vest": "^6.3.2",
|
|
493
|
-
"video-stream-ascii": "^1.6.2",
|
|
494
|
-
"video-stream-ascii-webcam": "github:Im-Rises/video-stream-ascii-webcam",
|
|
495
|
-
"video.js": "^8.23.8",
|
|
496
|
-
"vite": "^8.1.0",
|
|
497
|
-
"vite-plugin-dts": "^5.0.2",
|
|
498
|
-
"vite-plugin-singlefile": "^2.3.3",
|
|
499
|
-
"vite-tsconfig-paths": "^6.1.1",
|
|
500
|
-
"vitest": "^4.1.9",
|
|
501
|
-
"wavefile": "^11.0.0",
|
|
502
|
-
"wavesurfer.js": "^7.12.8",
|
|
503
|
-
"web-audio-beat-detector": "^8.2.37",
|
|
504
|
-
"web-audio-engine": "^0.13.4",
|
|
505
|
-
"web-worker": "^1.5.0",
|
|
506
|
-
"webaudio-peaks": "^1.0.0",
|
|
507
|
-
"whoiser": "^2.0.0-beta.10",
|
|
508
|
-
"wrangler": "^4.104.0",
|
|
509
|
-
"xlsx": "^0.18.5",
|
|
510
|
-
"xtend": "^4.0.2",
|
|
511
|
-
"yoctocolors": "^2.1.2",
|
|
512
|
-
"yoga-layout": "^3.2.1",
|
|
513
|
-
"yq-dns": "^1.0.19",
|
|
514
|
-
"yup": "^1.7.1",
|
|
515
|
-
"zod": "^4.4.3",
|
|
516
|
-
"zod-openapi": "^6.0.0",
|
|
517
|
-
"zod-to-json-schema": "^3.25.2"
|
|
518
|
-
},
|
|
519
|
-
"devDependencies": {
|
|
520
|
-
"@ai-sdk/anthropic": "^3.0.85",
|
|
521
|
-
"@ai-sdk/assemblyai": "^2.0.36",
|
|
522
|
-
"@ai-sdk/azure": "^3.0.77",
|
|
523
|
-
"@ai-sdk/cohere": "^3.0.39",
|
|
524
|
-
"@ai-sdk/deepgram": "^2.0.36",
|
|
525
|
-
"@ai-sdk/deepseek": "^2.0.39",
|
|
526
|
-
"@ai-sdk/elevenlabs": "^2.0.36",
|
|
527
|
-
"@ai-sdk/fal": "^2.0.37",
|
|
528
|
-
"@ai-sdk/fireworks": "^2.0.57",
|
|
529
|
-
"@ai-sdk/gladia": "^2.0.36",
|
|
530
|
-
"@ai-sdk/google": "^3.0.83",
|
|
531
|
-
"@ai-sdk/groq": "^3.0.42",
|
|
532
|
-
"@ai-sdk/hume": "^2.0.36",
|
|
533
|
-
"@ai-sdk/langchain": "^2.0.217",
|
|
534
|
-
"@ai-sdk/lmnt": "^2.0.36",
|
|
535
|
-
"@ai-sdk/luma": "^2.0.36",
|
|
536
|
-
"@ai-sdk/mistral": "^3.0.40",
|
|
537
|
-
"@ai-sdk/openai": "^3.0.74",
|
|
538
|
-
"@ai-sdk/perplexity": "^3.0.36",
|
|
539
|
-
"@ai-sdk/provider": "^3.0.10",
|
|
540
|
-
"@ai-sdk/react": "^3.0.211",
|
|
541
|
-
"@ai-sdk/replicate": "^2.0.36",
|
|
542
|
-
"@ai-sdk/revai": "^2.0.36",
|
|
543
|
-
"@ai-sdk/svelte": "^4.0.209",
|
|
544
|
-
"@ai-sdk/togetherai": "^2.0.56",
|
|
545
|
-
"@ai-sdk/ui-utils": "^1.2.11",
|
|
546
|
-
"@ai-sdk/vercel": "^2.0.53",
|
|
547
|
-
"@ai-sdk/vue": "^3.0.209",
|
|
548
|
-
"@ai-sdk/xai": "^3.0.96",
|
|
549
|
-
"@arethetypeswrong/cli": "^0.18.4",
|
|
550
|
-
"@biomejs/biome": "^2.5.1",
|
|
551
|
-
"@blessed/neo-blessed": "^1.0.0",
|
|
552
|
-
"@char-motion/react": "^0.3.1",
|
|
553
|
-
"@dnsquery/dns-packet": "^6.1.1",
|
|
554
|
-
"@eslint/js": "^10.0.1",
|
|
555
|
-
"@ffmpeg/ffmpeg": "^0.12.15",
|
|
556
|
-
"@ffmpeg/util": "^0.12.2",
|
|
557
|
-
"@heroicons/react": "^2.2.0",
|
|
558
|
-
"@hey-api/openapi-ts": "^0.99.0",
|
|
559
|
-
"@hookform/resolvers": "^5.4.0",
|
|
560
|
-
"@iconify/react": "^6.0.2",
|
|
561
|
-
"@inkjs/ui": "^2.0.0",
|
|
562
|
-
"@inkui-cli/accordion": "^0.2.0",
|
|
563
|
-
"@inkui-cli/autocomplete": "^0.2.0",
|
|
564
|
-
"@inkui-cli/cli": "^0.3.0",
|
|
565
|
-
"@inkui-cli/code-block": "^0.2.0",
|
|
566
|
-
"@inkui-cli/diff-view": "^0.2.0",
|
|
567
|
-
"@inkui-cli/gauge": "^0.2.0",
|
|
568
|
-
"@inkui-cli/hooks": "^0.2.0",
|
|
569
|
-
"@inkui-cli/inkui": "^0.5.0",
|
|
570
|
-
"@inkui-cli/json-viewer": "^0.2.0",
|
|
571
|
-
"@inkui-cli/markdown": "^0.2.0",
|
|
572
|
-
"@inkui-cli/panel": "^0.2.0",
|
|
573
|
-
"@inkui-cli/scroll-area": "^0.2.0",
|
|
574
|
-
"@inkui-cli/sparkline": "^0.2.0",
|
|
575
|
-
"@inkui-cli/stepper": "^0.2.0",
|
|
576
|
-
"@inkui-cli/streaming-text": "^0.2.0",
|
|
577
|
-
"@inkui-cli/tabs": "^0.2.0",
|
|
578
|
-
"@inkui-cli/token-counter": "^0.2.0",
|
|
579
|
-
"@inkui-cli/typewriter": "^0.2.0",
|
|
580
|
-
"@inquirer/core": "^11.2.1",
|
|
581
|
-
"@inquirer/expand": "^5.1.1",
|
|
582
|
-
"@inquirer/input": "^5.1.2",
|
|
583
|
-
"@inquirer/prompts": "^8.5.2",
|
|
584
|
-
"@jitl/opentui-core": "^0.4.0",
|
|
585
|
-
"@jitl/opentui-core-linux-x64": "^0.4.0",
|
|
586
|
-
"@jitl/opentui-react": "^0.4.0",
|
|
587
|
-
"@jridgewell/remapping": "^2.3.5",
|
|
588
|
-
"@kud/ink-ui": "^0.1.1",
|
|
589
|
-
"@mozilla/readability": "^0.6.0",
|
|
590
|
-
"@opencode-ai/plugin": "^1.17.9",
|
|
591
|
-
"@opencode-ai/sdk": "^1.17.9",
|
|
592
|
-
"@opentui-ui/core": "^0.0.2",
|
|
593
|
-
"@opentui-ui/solid": "^0.0.2",
|
|
594
|
-
"@opentui-ui/toast": "^0.0.5",
|
|
595
|
-
"@opentui/core": "^0.4.1",
|
|
596
|
-
"@opentui/extras": "^0.0.0-20260419-49f00f96",
|
|
597
|
-
"@opentui/keymap": "^0.4.1",
|
|
598
|
-
"@opentui/react": "^0.4.1",
|
|
599
|
-
"@opentui/solid": "^0.4.1",
|
|
600
|
-
"@oxog/dns": "^1.0.0",
|
|
601
|
-
"@phosphor-icons/react": "^2.1.10",
|
|
602
|
-
"@playwright/test": "^1.61.0",
|
|
603
|
-
"@resvg/resvg-js": "^2.6.2",
|
|
604
|
-
"@sinclair/typebox": "^0.34.49",
|
|
605
|
-
"@sister.software/asciify": "^3.1.3",
|
|
606
|
-
"@skillkit/tui": "^1.24.0",
|
|
607
|
-
"@standard-schema/spec": "^1.1.0",
|
|
608
|
-
"@standard-schema/utils": "^0.3.0",
|
|
609
|
-
"@stream-io/audio-filters-web": "^0.8.2",
|
|
610
|
-
"@stream-io/escape-string-regexp": "^5.0.1",
|
|
611
|
-
"@stream-io/feeds-client": "^2.4.0",
|
|
612
|
-
"@stream-io/feeds-react-sdk": "^1.0.16",
|
|
613
|
-
"@stream-io/flat-list-mvcp": "^0.10.3",
|
|
614
|
-
"@stream-io/logger": "^2.0.0",
|
|
615
|
-
"@stream-io/node-sdk": "^0.7.59",
|
|
616
|
-
"@stream-io/openai-realtime-api": "^0.3.3",
|
|
617
|
-
"@stream-io/react-native-callingx": "^0.5.1",
|
|
618
|
-
"@stream-io/stream-chat-css": "^5.16.1",
|
|
619
|
-
"@stream-io/transliterate": "^1.5.5",
|
|
620
|
-
"@stream-io/video-client": "^1.54.0",
|
|
621
|
-
"@stream-io/video-filters-web": "^0.7.5",
|
|
622
|
-
"@stream-io/video-react-bindings": "^1.17.0",
|
|
623
|
-
"@stream-io/video-react-native-sdk": "^1.39.0",
|
|
624
|
-
"@stream-io/video-react-sdk": "^1.38.0",
|
|
625
|
-
"@stream-io/video-styling": "^1.14.1",
|
|
626
|
-
"@stream-io/worker-timer": "^1.2.5",
|
|
627
|
-
"@tabler/icons-react": "^3.44.0",
|
|
628
|
-
"@tailwindcss/vite": "^4.3.1",
|
|
629
|
-
"@tauri-apps/api": "^2.11.1",
|
|
630
|
-
"@tauri-apps/cli": "^2.11.3",
|
|
631
|
-
"@tauri-apps/plugin-process": "^2.3.1",
|
|
632
|
-
"@tauri-apps/plugin-shell": "^2.3.5",
|
|
633
|
-
"@teaui/cli": "^1.14.14",
|
|
634
|
-
"@teaui/image": "^1.14.14",
|
|
635
|
-
"@teaui/react": "^1.14.14",
|
|
636
|
-
"@telepat/ansie": "^0.1.2",
|
|
637
|
-
"@termdraw/opentui": "^0.4.1",
|
|
638
|
-
"@testing-library/dom": "^10.4.1",
|
|
639
|
-
"@testing-library/jest-dom": "^6.9.1",
|
|
640
|
-
"@testing-library/react": "^16.3.2",
|
|
641
|
-
"@testing-library/user-event": "^14.6.1",
|
|
642
|
-
"@tonejs/piano": "^0.2.1",
|
|
643
|
-
"@tsconfig/node22": "^22.0.5",
|
|
644
|
-
"@tsconfig/node26": "^26.0.0",
|
|
645
|
-
"@types/blessed": "^0.1.27",
|
|
646
|
-
"@types/bun": "^1.3.14",
|
|
647
|
-
"@types/cheerio": "^1.0.0",
|
|
648
|
-
"@types/cors": "^2.8.19",
|
|
649
|
-
"@types/cross-spawn": "^6.0.6",
|
|
650
|
-
"@types/dompurify": "^3.2.0",
|
|
651
|
-
"@types/express": "^5.0.6",
|
|
652
|
-
"@types/fluent-ffmpeg": "^2.1.28",
|
|
653
|
-
"@types/howler": "^2.2.13",
|
|
654
|
-
"@types/ink-spinner": "^3.0.5",
|
|
655
|
-
"@types/jsdom": "^28.0.3",
|
|
656
|
-
"@types/jsonwebtoken": "^9.0.10",
|
|
657
|
-
"@types/node": "^26.0.0",
|
|
658
|
-
"@types/nodemon": "^3.1.1",
|
|
659
|
-
"@types/react": "^19.2.17",
|
|
660
|
-
"@types/react-dom": "^19.2.3",
|
|
661
|
-
"@types/react-reconciler": "^0.33.0",
|
|
662
|
-
"@types/terminal-kit": "^2.5.7",
|
|
663
|
-
"@types/turndown": "^5.0.6",
|
|
664
|
-
"@types/video.js": "^7.3.58",
|
|
665
|
-
"@typeschema/core": "^0.14.0",
|
|
666
|
-
"@typeschema/main": "^0.14.1",
|
|
667
|
-
"@typeschema/zod": "^0.14.0",
|
|
668
|
-
"@typescript-eslint/eslint-plugin": "^8.62.0",
|
|
669
|
-
"@typescript-eslint/parser": "^8.62.0",
|
|
670
|
-
"@typescript/native-preview": "^7.0.0-dev.20260623.1",
|
|
671
|
-
"@videojs/http-streaming": "^3.17.4",
|
|
672
|
-
"@vinejs/vine": "^4.4.0",
|
|
673
|
-
"@vitejs/plugin-react": "^6.0.3",
|
|
674
|
-
"@vitest/coverage-v8": "^4.1.9",
|
|
675
|
-
"@vybestack/opentui-react": "^0.1.62",
|
|
676
|
-
"@xenova/transformers": "^2.17.2",
|
|
677
|
-
"acme-client": "^5.4.0",
|
|
678
|
-
"ai": "^6.0.209",
|
|
679
|
-
"ajv": "^8.20.0",
|
|
680
|
-
"ajv-errors": "^3.0.0",
|
|
681
|
-
"ajv-formats": "^3.0.1",
|
|
682
|
-
"alameda": "^1.4.0",
|
|
683
|
-
"ansi-escapes": "^7.3.0",
|
|
684
|
-
"arktype": "^2.2.1",
|
|
685
|
-
"ascii-art": "^2.8.5",
|
|
686
|
-
"asciichart": "^1.5.25",
|
|
687
|
-
"asciify-engine": "^1.0.118",
|
|
688
|
-
"asciify-image": "^0.1.10",
|
|
689
|
-
"asciinema-player": "^3.16.0",
|
|
690
|
-
"ata-validator": "^0.21.0",
|
|
691
|
-
"aubiojs": "^0.2.1",
|
|
692
|
-
"audio-buffer-utils": "^5.1.2",
|
|
693
|
-
"audio-decode": "^3.11.0",
|
|
694
|
-
"audiobuffer-to-wav": "^1.0.0",
|
|
695
|
-
"beat-detection": "^1.1.0",
|
|
696
|
-
"better-sqlite3": "^12.11.1",
|
|
697
|
-
"bitwise": "^2.2.1",
|
|
698
|
-
"blessed": "^0.1.81",
|
|
699
|
-
"bns": "^0.16.0",
|
|
700
|
-
"bonjour-service": "^1.4.1",
|
|
701
|
-
"boxen": "^8.0.1",
|
|
702
|
-
"buffer": "^6.0.3",
|
|
703
|
-
"cfonts": "^3.3.1",
|
|
704
|
-
"chalk": "^5.6.2",
|
|
705
|
-
"chalk-animation": "^2.0.3",
|
|
706
|
-
"check-export-map": "^1.3.1",
|
|
707
|
-
"cheerio": "^1.2.0",
|
|
708
|
-
"chroma-js": "^3.2.0",
|
|
709
|
-
"cidr-tools": "^12.1.1",
|
|
710
|
-
"class-transformer": "^0.5.1",
|
|
711
|
-
"class-validator": "^0.15.1",
|
|
712
|
-
"cli-boxes": "^4.0.1",
|
|
713
|
-
"cli-cursor": "^5.0.0",
|
|
714
|
-
"cli-panel": "^1.0.0-beta.4",
|
|
715
|
-
"cli-spinners": "^3.4.0",
|
|
716
|
-
"cli-table3": "^0.6.5",
|
|
717
|
-
"clsx": "^2.1.1",
|
|
718
|
-
"comlink": "^4.4.2",
|
|
719
|
-
"commander": "^15.0.0",
|
|
720
|
-
"compiled": "^1.19.1",
|
|
721
|
-
"compromise": "^14.15.1",
|
|
722
|
-
"computed-types": "^1.11.2",
|
|
723
|
-
"concurrently": "^10.0.3",
|
|
724
|
-
"confbox": "^0.2.4",
|
|
725
|
-
"cors": "^2.8.6",
|
|
726
|
-
"cosmiconfig": "^9.0.2",
|
|
727
|
-
"cross-env": "^10.1.0",
|
|
728
|
-
"cross-spawn": "^7.0.6",
|
|
729
|
-
"d3": "^7.9.0",
|
|
730
|
-
"dashjs": "^5.2.0",
|
|
731
|
-
"data-validator": "^1.2.1",
|
|
732
|
-
"demucs-web": "^1.0.2",
|
|
733
|
-
"dns-client": "^0.0.5",
|
|
734
|
-
"dns-packet": "^5.6.1",
|
|
735
|
-
"dns-query": "^0.11.2",
|
|
736
|
-
"dns-zonefile": "^0.3.2",
|
|
737
|
-
"dns2": "^3.0.0",
|
|
738
|
-
"dnssd-advertise": "^1.1.6",
|
|
739
|
-
"dnssec-server": "^0.1.8",
|
|
740
|
-
"dohdec": "^8.0.0",
|
|
741
|
-
"dompurify": "^3.4.11",
|
|
742
|
-
"drawille-canvas": "^1.2.1",
|
|
743
|
-
"dsp.js": "^1.0.1",
|
|
744
|
-
"effect": "^3.21.4",
|
|
745
|
-
"emittery": "^2.0.0",
|
|
746
|
-
"enhanced-resolve": "^5.24.0",
|
|
747
|
-
"eslint": "^10.5.0",
|
|
748
|
-
"eslint-plugin-react": "^7.37.5",
|
|
749
|
-
"eslint-plugin-react-hooks": "^7.1.1",
|
|
750
|
-
"eslint-plugin-react-refresh": "^0.5.3",
|
|
751
|
-
"essentia.js": "^0.1.3",
|
|
752
|
-
"eventemitter3": "^5.0.4",
|
|
753
|
-
"express": "^5.2.1",
|
|
754
|
-
"fast-deep-equal": "^3.1.3",
|
|
755
|
-
"fast-fifo": "^1.3.2",
|
|
756
|
-
"fft-js": "^0.0.12",
|
|
757
|
-
"fft-windowing": "^0.1.4",
|
|
758
|
-
"fft.js": "^4.0.4",
|
|
759
|
-
"figlet": "^1.11.0",
|
|
760
|
-
"figlet-cli": "^0.3.0",
|
|
761
|
-
"figures": "^6.1.0",
|
|
762
|
-
"file-saver": "^2.0.5",
|
|
763
|
-
"fluent-ffmpeg": "^2.1.3",
|
|
764
|
-
"fluentvalidation-ts": "^5.0.0",
|
|
765
|
-
"flv.js": "^1.6.2",
|
|
766
|
-
"fontverter": "^2.0.0",
|
|
767
|
-
"fp-ts": "^2.16.11",
|
|
768
|
-
"fraction.js": "^5.3.4",
|
|
769
|
-
"framer-motion": "^12.41.0",
|
|
770
|
-
"fuzzysort": "^3.1.0",
|
|
771
|
-
"gh-pages": "^6.3.0",
|
|
772
|
-
"glitch-text": "^1.6.1",
|
|
773
|
-
"globals": "^17.7.0",
|
|
774
|
-
"gradient-string": "^3.0.0",
|
|
775
|
-
"helmet": "^8.2.0",
|
|
776
|
-
"hls.js": "^1.6.16",
|
|
777
|
-
"hono": "^4.12.27",
|
|
778
|
-
"howler": "^2.2.4",
|
|
779
|
-
"hsd": "^8.0.0",
|
|
780
|
-
"http-proxy-agent": "^9.1.0",
|
|
781
|
-
"https-proxy-agent": "^9.1.0",
|
|
782
|
-
"husky": "^9.1.7",
|
|
783
|
-
"hyperdht": "^6.32.0",
|
|
784
|
-
"idb": "^8.0.3",
|
|
785
|
-
"idb-keyval": "^6.2.5",
|
|
786
|
-
"image-and-video-to-ascii": "^1.0.4",
|
|
787
|
-
"image-to-ascii": "^3.3.0",
|
|
788
|
-
"image-to-braille": "^0.0.3",
|
|
789
|
-
"immer": "^11.1.8",
|
|
790
|
-
"inherits": "^2.0.4",
|
|
791
|
-
"ink": "^7.1.0",
|
|
792
|
-
"ink-ascii": "^0.0.4",
|
|
793
|
-
"ink-big-text": "^2.0.0",
|
|
794
|
-
"ink-box": "^2.0.0",
|
|
795
|
-
"ink-gradient": "^4.0.1",
|
|
796
|
-
"ink-link": "^5.0.0",
|
|
797
|
-
"ink-spinner": "^5.0.0",
|
|
798
|
-
"inquirer": "^14.0.2",
|
|
799
|
-
"io-ts": "^2.2.22",
|
|
800
|
-
"io-ts-types": "^0.5.19",
|
|
801
|
-
"ip-address": "^10.2.0",
|
|
802
|
-
"joi": "^18.2.3",
|
|
803
|
-
"jsdom": "^29.1.1",
|
|
804
|
-
"json-schema-to-zod": "^2.8.1",
|
|
805
|
-
"json5": "^2.2.3",
|
|
806
|
-
"jsonata": "^2.2.1",
|
|
807
|
-
"jsonc-parser": "^3.3.1",
|
|
808
|
-
"jsonwebtoken": "^9.0.3",
|
|
809
|
-
"jszip": "^3.10.1",
|
|
810
|
-
"jwt-decode": "^4.0.0",
|
|
811
|
-
"keyv": "^5.6.0",
|
|
812
|
-
"kokoro-js": "^1.2.1",
|
|
813
|
-
"kolorist": "^1.8.0",
|
|
814
|
-
"lamejs": "^1.2.1",
|
|
815
|
-
"lefthook": "^2.1.9",
|
|
816
|
-
"lint-staged": "^17.0.8",
|
|
817
|
-
"listr2": "^10.2.1",
|
|
818
|
-
"lodash-es": "^4.18.1",
|
|
819
|
-
"log-symbols": "^7.0.1",
|
|
820
|
-
"log-update": "^8.0.0",
|
|
821
|
-
"lru-cache": "^11.5.1",
|
|
822
|
-
"lucide-react": "^1.21.0",
|
|
823
|
-
"mammoth": "^1.12.0",
|
|
824
|
-
"marked": "^18.0.5",
|
|
825
|
-
"median-quickselect": "^1.0.1",
|
|
826
|
-
"memoize-one": "^6.0.0",
|
|
827
|
-
"meyda": "^5.6.3",
|
|
828
|
-
"microbundle": "^0.15.1",
|
|
829
|
-
"midi-file": "^1.2.4",
|
|
830
|
-
"ml-matrix": "^6.13.0",
|
|
831
|
-
"monocle-ts": "^2.3.13",
|
|
832
|
-
"mp4box": "^2.4.1",
|
|
833
|
-
"multer": "^2.2.0",
|
|
834
|
-
"music-metadata": "^11.13.0",
|
|
835
|
-
"music-metadata-browser": "^2.5.11",
|
|
836
|
-
"musicbrainz-api": "^1.2.1",
|
|
837
|
-
"mysql2": "^3.22.5",
|
|
838
|
-
"nanocolors": "^0.2.13",
|
|
839
|
-
"netcat": "^1.5.0",
|
|
840
|
-
"newtype-ts": "^0.3.5",
|
|
841
|
-
"node-config": "^0.0.2",
|
|
842
|
-
"node-forge": "^1.4.0",
|
|
843
|
-
"node-vibrant": "^4.0.4",
|
|
844
|
-
"nodemon": "^3.1.14",
|
|
845
|
-
"nope-validator": "^1.2.2",
|
|
846
|
-
"normalize-url": "^9.0.1",
|
|
847
|
-
"npm-run-all": "^4.1.5",
|
|
848
|
-
"oh-my-logo": "^0.5.0",
|
|
849
|
-
"once": "^1.4.0",
|
|
850
|
-
"onnxruntime": "^1.7.0",
|
|
851
|
-
"onnxruntime-common": "^1.27.0",
|
|
852
|
-
"onnxruntime-node": "^1.27.0",
|
|
853
|
-
"onnxruntime-react-native": "^1.24.3",
|
|
854
|
-
"onnxruntime-web": "^1.27.0",
|
|
855
|
-
"openapi-fetch": "^0.17.0",
|
|
856
|
-
"openapi-typescript": "^7.13.0",
|
|
857
|
-
"ora": "^9.4.1",
|
|
858
|
-
"p-limit": "^7.3.0",
|
|
859
|
-
"p-queue": "^9.3.0",
|
|
860
|
-
"p-retry": "^8.0.0",
|
|
861
|
-
"p-timeout": "^7.0.1",
|
|
862
|
-
"pdfjs-dist": "^6.0.227",
|
|
863
|
-
"pi-tui": "^0.0.1",
|
|
864
|
-
"picocolors": "^1.1.1",
|
|
865
|
-
"pitch-detect": "^0.0.2",
|
|
866
|
-
"pitchfinder": "^2.3.4",
|
|
867
|
-
"pitchy": "^4.1.0",
|
|
868
|
-
"playwright": "^1.61.0",
|
|
869
|
-
"pngjs": "^7.0.0",
|
|
870
|
-
"publint": "^0.3.21",
|
|
871
|
-
"quick-lru": "^7.3.0",
|
|
872
|
-
"rc-config-loader": "^4.1.4",
|
|
873
|
-
"rdapper": "^0.13.0",
|
|
874
|
-
"react": "^19.2.7",
|
|
875
|
-
"react-ascii-text": "^0.0.6",
|
|
876
|
-
"react-devtools-core": "^7.0.1",
|
|
877
|
-
"react-dom": "^19.2.7",
|
|
878
|
-
"react-feather": "^2.0.10",
|
|
879
|
-
"react-hook-form": "^7.80.0",
|
|
880
|
-
"react-icons": "^5.6.0",
|
|
881
|
-
"react-reconciler": "^0.33.0",
|
|
882
|
-
"readable-stream": "^4.7.0",
|
|
883
|
-
"reflect-metadata": "^0.2.2",
|
|
884
|
-
"remeda": "^2.39.0",
|
|
885
|
-
"robots-parser": "^3.0.1",
|
|
886
|
-
"rollup": "^4.62.2",
|
|
887
|
-
"safe-buffer": "^5.2.1",
|
|
888
|
-
"scheduler": "^0.27.0",
|
|
889
|
-
"selfsigned": "^5.5.0",
|
|
890
|
-
"sharp": "^0.35.2",
|
|
891
|
-
"shifty": "^3.0.6",
|
|
892
|
-
"silvery": "^0.21.0",
|
|
893
|
-
"simple-statistics": "^7.9.0",
|
|
894
|
-
"sitemapper": "^4.1.6",
|
|
895
|
-
"socket.io": "^4.8.3",
|
|
896
|
-
"socket.io-client": "^4.8.3",
|
|
897
|
-
"socks-proxy-agent": "^10.1.0",
|
|
898
|
-
"soundtouchjs": "^0.3.0",
|
|
899
|
-
"spectrogram-js": "^1.1.2",
|
|
900
|
-
"stdout-update": "^4.0.1",
|
|
901
|
-
"strip-json-comments": "^5.0.3",
|
|
902
|
-
"superstruct": "^2.0.2",
|
|
903
|
-
"swagger-jsdoc": "^6.3.0",
|
|
904
|
-
"swagger-ui-express": "^5.0.1",
|
|
905
|
-
"tailwind-merge": "^3.6.0",
|
|
906
|
-
"tailwindcss": "^4.3.1",
|
|
907
|
-
"tangerine": "^2.1.3",
|
|
908
|
-
"terminal-canvas": "^3.1.2",
|
|
909
|
-
"terminal-image": "^4.3.0",
|
|
910
|
-
"terminal-kit": "^3.1.2",
|
|
911
|
-
"terminal-kit-plugins": "^1.1.0",
|
|
912
|
-
"terminalizer": "^0.12.0",
|
|
913
|
-
"tesseract.js": "^7.0.0",
|
|
914
|
-
"through2": "^5.0.3",
|
|
915
|
-
"tinyrainbow": "^3.1.0",
|
|
916
|
-
"tone": "^15.1.22",
|
|
917
|
-
"toonify": "^1.0.0",
|
|
918
|
-
"ts-node": "^10.9.2",
|
|
919
|
-
"ts-pattern": "^5.9.0",
|
|
920
|
-
"turndown": "^7.2.4",
|
|
921
|
-
"turndown-plugin-gfm": "^1.0.2",
|
|
922
|
-
"typanion": "^3.14.0",
|
|
923
|
-
"typebox": "^1.3.0",
|
|
924
|
-
"typescript": "^6.0.3",
|
|
925
|
-
"typescript-eslint": "^8.62.0",
|
|
926
|
-
"unplugin-icons": "^23.0.1",
|
|
927
|
-
"util-deprecate": "^1.0.2",
|
|
928
|
-
"valibot": "^1.4.1",
|
|
929
|
-
"vest": "^6.3.2",
|
|
930
|
-
"video-stream-ascii": "^1.6.2",
|
|
931
|
-
"video-stream-ascii-webcam": "github:Im-Rises/video-stream-ascii-webcam",
|
|
932
|
-
"video.js": "^8.23.8",
|
|
933
|
-
"vite": "^8.1.0",
|
|
934
|
-
"vite-plugin-dts": "^5.0.2",
|
|
935
|
-
"vite-plugin-singlefile": "^2.3.3",
|
|
936
|
-
"vite-tsconfig-paths": "^6.1.1",
|
|
937
|
-
"vitest": "^4.1.9",
|
|
938
|
-
"wavefile": "^11.0.0",
|
|
939
|
-
"wavesurfer.js": "^7.12.8",
|
|
940
|
-
"web-audio-beat-detector": "^8.2.37",
|
|
941
|
-
"web-audio-engine": "^0.13.4",
|
|
942
|
-
"web-worker": "^1.5.0",
|
|
943
|
-
"webaudio-peaks": "^1.0.0",
|
|
944
|
-
"whoiser": "^2.0.0-beta.10",
|
|
945
|
-
"wrangler": "^4.104.0",
|
|
946
|
-
"xlsx": "^0.18.5",
|
|
947
|
-
"xtend": "^4.0.2",
|
|
948
|
-
"yoctocolors": "^2.1.2",
|
|
949
|
-
"yoga-layout": "^3.2.1",
|
|
950
|
-
"yq-dns": "^1.0.19",
|
|
951
|
-
"yup": "^1.7.1",
|
|
952
|
-
"zod": "^4.4.3",
|
|
953
|
-
"zod-openapi": "^6.0.0",
|
|
954
|
-
"zod-to-json-schema": "^3.25.2"
|
|
955
|
-
},
|
|
956
|
-
"optionalDependencies": {
|
|
957
|
-
"playwright-extra": "^1.7.9",
|
|
958
|
-
"puppeteer-extra-plugin-stealth": "^2.11.2"
|
|
959
|
-
},
|
|
960
|
-
"keywords": [
|
|
961
|
-
"devthink",
|
|
962
|
-
"webscrape",
|
|
963
|
-
"web-scraping",
|
|
964
|
-
"web-fetch",
|
|
965
|
-
"playwright",
|
|
966
|
-
"cheerio",
|
|
967
|
-
"browser-automation",
|
|
968
|
-
"markdown",
|
|
969
|
-
"ai",
|
|
970
|
-
"llm",
|
|
971
|
-
"rag",
|
|
972
|
-
"cli",
|
|
973
|
-
"universal",
|
|
974
|
-
"cross-runtime"
|
|
975
|
-
],
|
|
976
|
-
"repository": {
|
|
977
|
-
"type": "git",
|
|
978
|
-
"url": "git+https://github.com/iNathlan/devthink.git"
|
|
979
|
-
},
|
|
980
|
-
"publishConfig": {
|
|
981
|
-
"access": "public"
|
|
982
|
-
},
|
|
983
|
-
"overrides": {
|
|
984
|
-
"@ai-sdk/anthropic": "$@ai-sdk/anthropic",
|
|
985
|
-
"@ai-sdk/assemblyai": "$@ai-sdk/assemblyai",
|
|
986
|
-
"@ai-sdk/azure": "$@ai-sdk/azure",
|
|
987
|
-
"@ai-sdk/cohere": "$@ai-sdk/cohere",
|
|
988
|
-
"@ai-sdk/deepgram": "$@ai-sdk/deepgram",
|
|
989
|
-
"@ai-sdk/deepseek": "$@ai-sdk/deepseek",
|
|
990
|
-
"@ai-sdk/elevenlabs": "$@ai-sdk/elevenlabs",
|
|
991
|
-
"@ai-sdk/fal": "$@ai-sdk/fal",
|
|
992
|
-
"@ai-sdk/fireworks": "$@ai-sdk/fireworks",
|
|
993
|
-
"@ai-sdk/gladia": "$@ai-sdk/gladia",
|
|
994
|
-
"@ai-sdk/google": "$@ai-sdk/google",
|
|
995
|
-
"@ai-sdk/groq": "$@ai-sdk/groq",
|
|
996
|
-
"@ai-sdk/hume": "$@ai-sdk/hume",
|
|
997
|
-
"@ai-sdk/langchain": "$@ai-sdk/langchain",
|
|
998
|
-
"@ai-sdk/lmnt": "$@ai-sdk/lmnt",
|
|
999
|
-
"@ai-sdk/luma": "$@ai-sdk/luma",
|
|
1000
|
-
"@ai-sdk/mistral": "$@ai-sdk/mistral",
|
|
1001
|
-
"@ai-sdk/openai": "$@ai-sdk/openai",
|
|
1002
|
-
"@ai-sdk/perplexity": "$@ai-sdk/perplexity",
|
|
1003
|
-
"@ai-sdk/provider": "$@ai-sdk/provider",
|
|
1004
|
-
"@ai-sdk/react": "$@ai-sdk/react",
|
|
1005
|
-
"@ai-sdk/replicate": "$@ai-sdk/replicate",
|
|
1006
|
-
"@ai-sdk/revai": "$@ai-sdk/revai",
|
|
1007
|
-
"@ai-sdk/svelte": "$@ai-sdk/svelte",
|
|
1008
|
-
"@ai-sdk/togetherai": "$@ai-sdk/togetherai",
|
|
1009
|
-
"@ai-sdk/ui-utils": "$@ai-sdk/ui-utils",
|
|
1010
|
-
"@ai-sdk/vercel": "$@ai-sdk/vercel",
|
|
1011
|
-
"@ai-sdk/vue": "$@ai-sdk/vue",
|
|
1012
|
-
"@ai-sdk/xai": "$@ai-sdk/xai",
|
|
1013
|
-
"@arethetypeswrong/cli": "$@arethetypeswrong/cli",
|
|
1014
|
-
"@biomejs/biome": "$@biomejs/biome",
|
|
1015
|
-
"@blessed/neo-blessed": "$@blessed/neo-blessed",
|
|
1016
|
-
"@char-motion/react": "$@char-motion/react",
|
|
1017
|
-
"@dnsquery/dns-packet": "$@dnsquery/dns-packet",
|
|
1018
|
-
"@eslint/js": "$@eslint/js",
|
|
1019
|
-
"@ffmpeg/ffmpeg": "$@ffmpeg/ffmpeg",
|
|
1020
|
-
"@ffmpeg/util": "$@ffmpeg/util",
|
|
1021
|
-
"@heroicons/react": "$@heroicons/react",
|
|
1022
|
-
"@hey-api/openapi-ts": "$@hey-api/openapi-ts",
|
|
1023
|
-
"@hookform/resolvers": "$@hookform/resolvers",
|
|
1024
|
-
"@iconify/react": "$@iconify/react",
|
|
1025
|
-
"@inkjs/ui": "$@inkjs/ui",
|
|
1026
|
-
"@inkui-cli/accordion": "$@inkui-cli/accordion",
|
|
1027
|
-
"@inkui-cli/autocomplete": "$@inkui-cli/autocomplete",
|
|
1028
|
-
"@inkui-cli/cli": "$@inkui-cli/cli",
|
|
1029
|
-
"@inkui-cli/code-block": "$@inkui-cli/code-block",
|
|
1030
|
-
"@inkui-cli/diff-view": "$@inkui-cli/diff-view",
|
|
1031
|
-
"@inkui-cli/gauge": "$@inkui-cli/gauge",
|
|
1032
|
-
"@inkui-cli/hooks": "$@inkui-cli/hooks",
|
|
1033
|
-
"@inkui-cli/inkui": "$@inkui-cli/inkui",
|
|
1034
|
-
"@inkui-cli/json-viewer": "$@inkui-cli/json-viewer",
|
|
1035
|
-
"@inkui-cli/markdown": "$@inkui-cli/markdown",
|
|
1036
|
-
"@inkui-cli/panel": "$@inkui-cli/panel",
|
|
1037
|
-
"@inkui-cli/scroll-area": "$@inkui-cli/scroll-area",
|
|
1038
|
-
"@inkui-cli/sparkline": "$@inkui-cli/sparkline",
|
|
1039
|
-
"@inkui-cli/stepper": "$@inkui-cli/stepper",
|
|
1040
|
-
"@inkui-cli/streaming-text": "$@inkui-cli/streaming-text",
|
|
1041
|
-
"@inkui-cli/tabs": "$@inkui-cli/tabs",
|
|
1042
|
-
"@inkui-cli/token-counter": "$@inkui-cli/token-counter",
|
|
1043
|
-
"@inkui-cli/typewriter": "$@inkui-cli/typewriter",
|
|
1044
|
-
"@inquirer/core": "$@inquirer/core",
|
|
1045
|
-
"@inquirer/expand": "$@inquirer/expand",
|
|
1046
|
-
"@inquirer/input": "$@inquirer/input",
|
|
1047
|
-
"@inquirer/prompts": "$@inquirer/prompts",
|
|
1048
|
-
"@jitl/opentui-core": "$@jitl/opentui-core",
|
|
1049
|
-
"@jitl/opentui-core-linux-x64": "$@jitl/opentui-core-linux-x64",
|
|
1050
|
-
"@jitl/opentui-react": "$@jitl/opentui-react",
|
|
1051
|
-
"@jridgewell/remapping": "$@jridgewell/remapping",
|
|
1052
|
-
"@kud/ink-ui": "$@kud/ink-ui",
|
|
1053
|
-
"@mozilla/readability": "$@mozilla/readability",
|
|
1054
|
-
"@opencode-ai/plugin": "$@opencode-ai/plugin",
|
|
1055
|
-
"@opencode-ai/sdk": "$@opencode-ai/sdk",
|
|
1056
|
-
"@opentui-ui/core": "$@opentui-ui/core",
|
|
1057
|
-
"@opentui-ui/solid": "$@opentui-ui/solid",
|
|
1058
|
-
"@opentui-ui/toast": "$@opentui-ui/toast",
|
|
1059
|
-
"@opentui/core": "$@opentui/core",
|
|
1060
|
-
"@opentui/extras": "$@opentui/extras",
|
|
1061
|
-
"@opentui/keymap": "$@opentui/keymap",
|
|
1062
|
-
"@opentui/react": "$@opentui/react",
|
|
1063
|
-
"@opentui/solid": "$@opentui/solid",
|
|
1064
|
-
"@oxog/dns": "$@oxog/dns",
|
|
1065
|
-
"@phosphor-icons/react": "$@phosphor-icons/react",
|
|
1066
|
-
"@playwright/test": "$@playwright/test",
|
|
1067
|
-
"@resvg/resvg-js": "$@resvg/resvg-js",
|
|
1068
|
-
"@sinclair/typebox": "$@sinclair/typebox",
|
|
1069
|
-
"@sister.software/asciify": "$@sister.software/asciify",
|
|
1070
|
-
"@skillkit/tui": "$@skillkit/tui",
|
|
1071
|
-
"@standard-schema/spec": "$@standard-schema/spec",
|
|
1072
|
-
"@standard-schema/utils": "$@standard-schema/utils",
|
|
1073
|
-
"@stream-io/audio-filters-web": "$@stream-io/audio-filters-web",
|
|
1074
|
-
"@stream-io/escape-string-regexp": "$@stream-io/escape-string-regexp",
|
|
1075
|
-
"@stream-io/feeds-client": "$@stream-io/feeds-client",
|
|
1076
|
-
"@stream-io/feeds-react-sdk": "$@stream-io/feeds-react-sdk",
|
|
1077
|
-
"@stream-io/flat-list-mvcp": "$@stream-io/flat-list-mvcp",
|
|
1078
|
-
"@stream-io/logger": "$@stream-io/logger",
|
|
1079
|
-
"@stream-io/node-sdk": "$@stream-io/node-sdk",
|
|
1080
|
-
"@stream-io/openai-realtime-api": "$@stream-io/openai-realtime-api",
|
|
1081
|
-
"@stream-io/react-native-callingx": "$@stream-io/react-native-callingx",
|
|
1082
|
-
"@stream-io/stream-chat-css": "$@stream-io/stream-chat-css",
|
|
1083
|
-
"@stream-io/transliterate": "$@stream-io/transliterate",
|
|
1084
|
-
"@stream-io/video-client": "$@stream-io/video-client",
|
|
1085
|
-
"@stream-io/video-filters-web": "$@stream-io/video-filters-web",
|
|
1086
|
-
"@stream-io/video-react-bindings": "$@stream-io/video-react-bindings",
|
|
1087
|
-
"@stream-io/video-react-native-sdk": "$@stream-io/video-react-native-sdk",
|
|
1088
|
-
"@stream-io/video-react-sdk": "$@stream-io/video-react-sdk",
|
|
1089
|
-
"@stream-io/video-styling": "$@stream-io/video-styling",
|
|
1090
|
-
"@stream-io/worker-timer": "$@stream-io/worker-timer",
|
|
1091
|
-
"@tabler/icons-react": "$@tabler/icons-react",
|
|
1092
|
-
"@tailwindcss/vite": "$@tailwindcss/vite",
|
|
1093
|
-
"@tauri-apps/api": "$@tauri-apps/api",
|
|
1094
|
-
"@tauri-apps/cli": "$@tauri-apps/cli",
|
|
1095
|
-
"@tauri-apps/plugin-process": "$@tauri-apps/plugin-process",
|
|
1096
|
-
"@tauri-apps/plugin-shell": "$@tauri-apps/plugin-shell",
|
|
1097
|
-
"@teaui/cli": "$@teaui/cli",
|
|
1098
|
-
"@teaui/image": "$@teaui/image",
|
|
1099
|
-
"@teaui/react": "$@teaui/react",
|
|
1100
|
-
"@telepat/ansie": "$@telepat/ansie",
|
|
1101
|
-
"@termdraw/opentui": "$@termdraw/opentui",
|
|
1102
|
-
"@testing-library/dom": "$@testing-library/dom",
|
|
1103
|
-
"@testing-library/jest-dom": "$@testing-library/jest-dom",
|
|
1104
|
-
"@testing-library/react": "$@testing-library/react",
|
|
1105
|
-
"@testing-library/user-event": "$@testing-library/user-event",
|
|
1106
|
-
"@tonejs/piano": "$@tonejs/piano",
|
|
1107
|
-
"@tsconfig/node22": "$@tsconfig/node22",
|
|
1108
|
-
"@tsconfig/node26": "$@tsconfig/node26",
|
|
1109
|
-
"@types/blessed": "$@types/blessed",
|
|
1110
|
-
"@types/bun": "$@types/bun",
|
|
1111
|
-
"@types/cheerio": "$@types/cheerio",
|
|
1112
|
-
"@types/cors": "$@types/cors",
|
|
1113
|
-
"@types/cross-spawn": "$@types/cross-spawn",
|
|
1114
|
-
"@types/dompurify": "$@types/dompurify",
|
|
1115
|
-
"@types/express": "$@types/express",
|
|
1116
|
-
"@types/fluent-ffmpeg": "$@types/fluent-ffmpeg",
|
|
1117
|
-
"@types/howler": "$@types/howler",
|
|
1118
|
-
"@types/ink-spinner": "$@types/ink-spinner",
|
|
1119
|
-
"@types/jsdom": "$@types/jsdom",
|
|
1120
|
-
"@types/jsonwebtoken": "$@types/jsonwebtoken",
|
|
1121
|
-
"@types/node": "$@types/node",
|
|
1122
|
-
"@types/nodemon": "$@types/nodemon",
|
|
1123
|
-
"@types/react": "$@types/react",
|
|
1124
|
-
"@types/react-dom": "$@types/react-dom",
|
|
1125
|
-
"@types/react-reconciler": "$@types/react-reconciler",
|
|
1126
|
-
"@types/terminal-kit": "$@types/terminal-kit",
|
|
1127
|
-
"@types/turndown": "$@types/turndown",
|
|
1128
|
-
"@types/video.js": "$@types/video.js",
|
|
1129
|
-
"@typeschema/core": "$@typeschema/core",
|
|
1130
|
-
"@typeschema/main": "$@typeschema/main",
|
|
1131
|
-
"@typeschema/zod": "$@typeschema/zod",
|
|
1132
|
-
"@typescript-eslint/eslint-plugin": "$@typescript-eslint/eslint-plugin",
|
|
1133
|
-
"@typescript-eslint/parser": "$@typescript-eslint/parser",
|
|
1134
|
-
"@typescript/native-preview": "$@typescript/native-preview",
|
|
1135
|
-
"@videojs/http-streaming": "$@videojs/http-streaming",
|
|
1136
|
-
"@vinejs/vine": "$@vinejs/vine",
|
|
1137
|
-
"@vitejs/plugin-react": "$@vitejs/plugin-react",
|
|
1138
|
-
"@vitest/coverage-v8": "$@vitest/coverage-v8",
|
|
1139
|
-
"@vybestack/opentui-react": "$@vybestack/opentui-react",
|
|
1140
|
-
"@xenova/transformers": "$@xenova/transformers",
|
|
1141
|
-
"acme-client": "$acme-client",
|
|
1142
|
-
"ai": "$ai",
|
|
1143
|
-
"ajv": "$ajv",
|
|
1144
|
-
"ajv-errors": "$ajv-errors",
|
|
1145
|
-
"ajv-formats": "$ajv-formats",
|
|
1146
|
-
"alameda": "$alameda",
|
|
1147
|
-
"ansi-escapes": "$ansi-escapes",
|
|
1148
|
-
"arktype": "$arktype",
|
|
1149
|
-
"ascii-art": "$ascii-art",
|
|
1150
|
-
"asciichart": "$asciichart",
|
|
1151
|
-
"asciify-engine": "$asciify-engine",
|
|
1152
|
-
"asciify-image": "$asciify-image",
|
|
1153
|
-
"asciinema-player": "$asciinema-player",
|
|
1154
|
-
"ata-validator": "$ata-validator",
|
|
1155
|
-
"aubiojs": "$aubiojs",
|
|
1156
|
-
"audio-buffer-utils": "$audio-buffer-utils",
|
|
1157
|
-
"audio-decode": "$audio-decode",
|
|
1158
|
-
"audiobuffer-to-wav": "$audiobuffer-to-wav",
|
|
1159
|
-
"beat-detection": "$beat-detection",
|
|
1160
|
-
"better-sqlite3": "$better-sqlite3",
|
|
1161
|
-
"bitwise": "$bitwise",
|
|
1162
|
-
"blessed": "$blessed",
|
|
1163
|
-
"bns": "$bns",
|
|
1164
|
-
"bonjour-service": "$bonjour-service",
|
|
1165
|
-
"boxen": "$boxen",
|
|
1166
|
-
"buffer": "$buffer",
|
|
1167
|
-
"cfonts": "$cfonts",
|
|
1168
|
-
"chalk": "$chalk",
|
|
1169
|
-
"chalk-animation": "$chalk-animation",
|
|
1170
|
-
"check-export-map": "$check-export-map",
|
|
1171
|
-
"cheerio": "$cheerio",
|
|
1172
|
-
"chroma-js": "$chroma-js",
|
|
1173
|
-
"cidr-tools": "$cidr-tools",
|
|
1174
|
-
"class-transformer": "$class-transformer",
|
|
1175
|
-
"class-validator": "$class-validator",
|
|
1176
|
-
"cli-boxes": "$cli-boxes",
|
|
1177
|
-
"cli-cursor": "$cli-cursor",
|
|
1178
|
-
"cli-panel": "$cli-panel",
|
|
1179
|
-
"cli-spinners": "$cli-spinners",
|
|
1180
|
-
"cli-table3": "$cli-table3",
|
|
1181
|
-
"clsx": "$clsx",
|
|
1182
|
-
"comlink": "$comlink",
|
|
1183
|
-
"commander": "$commander",
|
|
1184
|
-
"compiled": "$compiled",
|
|
1185
|
-
"compromise": "$compromise",
|
|
1186
|
-
"computed-types": "$computed-types",
|
|
1187
|
-
"concurrently": "$concurrently",
|
|
1188
|
-
"confbox": "$confbox",
|
|
1189
|
-
"cors": "$cors",
|
|
1190
|
-
"cosmiconfig": "$cosmiconfig",
|
|
1191
|
-
"cross-env": "$cross-env",
|
|
1192
|
-
"cross-spawn": "$cross-spawn",
|
|
1193
|
-
"d3": "$d3",
|
|
1194
|
-
"dashjs": "$dashjs",
|
|
1195
|
-
"data-validator": "$data-validator",
|
|
1196
|
-
"demucs-web": "$demucs-web",
|
|
1197
|
-
"dns-client": "$dns-client",
|
|
1198
|
-
"dns-packet": "$dns-packet",
|
|
1199
|
-
"dns-query": "$dns-query",
|
|
1200
|
-
"dns-zonefile": "$dns-zonefile",
|
|
1201
|
-
"dns2": "$dns2",
|
|
1202
|
-
"dnssd-advertise": "$dnssd-advertise",
|
|
1203
|
-
"dnssec-server": "$dnssec-server",
|
|
1204
|
-
"dohdec": "$dohdec",
|
|
1205
|
-
"dompurify": "$dompurify",
|
|
1206
|
-
"drawille-canvas": "$drawille-canvas",
|
|
1207
|
-
"dsp.js": "$dsp.js",
|
|
1208
|
-
"effect": "$effect",
|
|
1209
|
-
"emittery": "$emittery",
|
|
1210
|
-
"enhanced-resolve": "$enhanced-resolve",
|
|
1211
|
-
"eslint": "$eslint",
|
|
1212
|
-
"eslint-plugin-react": "$eslint-plugin-react",
|
|
1213
|
-
"eslint-plugin-react-hooks": "$eslint-plugin-react-hooks",
|
|
1214
|
-
"eslint-plugin-react-refresh": "$eslint-plugin-react-refresh",
|
|
1215
|
-
"essentia.js": "$essentia.js",
|
|
1216
|
-
"eventemitter3": "$eventemitter3",
|
|
1217
|
-
"express": "$express",
|
|
1218
|
-
"fast-deep-equal": "$fast-deep-equal",
|
|
1219
|
-
"fast-fifo": "$fast-fifo",
|
|
1220
|
-
"fft-js": "$fft-js",
|
|
1221
|
-
"fft-windowing": "$fft-windowing",
|
|
1222
|
-
"fft.js": "$fft.js",
|
|
1223
|
-
"figlet": "$figlet",
|
|
1224
|
-
"figlet-cli": "$figlet-cli",
|
|
1225
|
-
"figures": "$figures",
|
|
1226
|
-
"file-saver": "$file-saver",
|
|
1227
|
-
"fluent-ffmpeg": "$fluent-ffmpeg",
|
|
1228
|
-
"fluentvalidation-ts": "$fluentvalidation-ts",
|
|
1229
|
-
"flv.js": "$flv.js",
|
|
1230
|
-
"fontverter": "$fontverter",
|
|
1231
|
-
"fp-ts": "$fp-ts",
|
|
1232
|
-
"fraction.js": "$fraction.js",
|
|
1233
|
-
"framer-motion": "$framer-motion",
|
|
1234
|
-
"fuzzysort": "$fuzzysort",
|
|
1235
|
-
"gh-pages": "$gh-pages",
|
|
1236
|
-
"glitch-text": "$glitch-text",
|
|
1237
|
-
"globals": "$globals",
|
|
1238
|
-
"gradient-string": "$gradient-string",
|
|
1239
|
-
"helmet": "$helmet",
|
|
1240
|
-
"hls.js": "$hls.js",
|
|
1241
|
-
"hono": "$hono",
|
|
1242
|
-
"howler": "$howler",
|
|
1243
|
-
"hsd": "$hsd",
|
|
1244
|
-
"http-proxy-agent": "$http-proxy-agent",
|
|
1245
|
-
"https-proxy-agent": "$https-proxy-agent",
|
|
1246
|
-
"husky": "$husky",
|
|
1247
|
-
"hyperdht": "$hyperdht",
|
|
1248
|
-
"idb": "$idb",
|
|
1249
|
-
"idb-keyval": "$idb-keyval",
|
|
1250
|
-
"image-and-video-to-ascii": "$image-and-video-to-ascii",
|
|
1251
|
-
"image-to-ascii": "$image-to-ascii",
|
|
1252
|
-
"image-to-braille": "$image-to-braille",
|
|
1253
|
-
"immer": "$immer",
|
|
1254
|
-
"inherits": "$inherits",
|
|
1255
|
-
"ink": "$ink",
|
|
1256
|
-
"ink-ascii": "$ink-ascii",
|
|
1257
|
-
"ink-big-text": "$ink-big-text",
|
|
1258
|
-
"ink-box": "$ink-box",
|
|
1259
|
-
"ink-gradient": "$ink-gradient",
|
|
1260
|
-
"ink-link": "$ink-link",
|
|
1261
|
-
"ink-spinner": "$ink-spinner",
|
|
1262
|
-
"inquirer": "$inquirer",
|
|
1263
|
-
"io-ts": "$io-ts",
|
|
1264
|
-
"io-ts-types": "$io-ts-types",
|
|
1265
|
-
"ip-address": "$ip-address",
|
|
1266
|
-
"joi": "$joi",
|
|
1267
|
-
"jsdom": "$jsdom",
|
|
1268
|
-
"json-schema-to-zod": "$json-schema-to-zod",
|
|
1269
|
-
"json5": "$json5",
|
|
1270
|
-
"jsonata": "$jsonata",
|
|
1271
|
-
"jsonc-parser": "$jsonc-parser",
|
|
1272
|
-
"jsonwebtoken": "$jsonwebtoken",
|
|
1273
|
-
"jszip": "$jszip",
|
|
1274
|
-
"jwt-decode": "$jwt-decode",
|
|
1275
|
-
"keyv": "$keyv",
|
|
1276
|
-
"kokoro-js": "$kokoro-js",
|
|
1277
|
-
"kolorist": "$kolorist",
|
|
1278
|
-
"lamejs": "$lamejs",
|
|
1279
|
-
"lefthook": "$lefthook",
|
|
1280
|
-
"lint-staged": "$lint-staged",
|
|
1281
|
-
"listr2": "$listr2",
|
|
1282
|
-
"lodash-es": "$lodash-es",
|
|
1283
|
-
"log-symbols": "$log-symbols",
|
|
1284
|
-
"log-update": "$log-update",
|
|
1285
|
-
"lru-cache": "$lru-cache",
|
|
1286
|
-
"lucide-react": "$lucide-react",
|
|
1287
|
-
"mammoth": "$mammoth",
|
|
1288
|
-
"marked": "$marked",
|
|
1289
|
-
"median-quickselect": "$median-quickselect",
|
|
1290
|
-
"memoize-one": "$memoize-one",
|
|
1291
|
-
"meyda": "$meyda",
|
|
1292
|
-
"microbundle": "$microbundle",
|
|
1293
|
-
"midi-file": "$midi-file",
|
|
1294
|
-
"ml-matrix": "$ml-matrix",
|
|
1295
|
-
"monocle-ts": "$monocle-ts",
|
|
1296
|
-
"mp4box": "$mp4box",
|
|
1297
|
-
"multer": "$multer",
|
|
1298
|
-
"music-metadata": "$music-metadata",
|
|
1299
|
-
"music-metadata-browser": "$music-metadata-browser",
|
|
1300
|
-
"musicbrainz-api": "$musicbrainz-api",
|
|
1301
|
-
"mysql2": "$mysql2",
|
|
1302
|
-
"nanocolors": "$nanocolors",
|
|
1303
|
-
"netcat": "$netcat",
|
|
1304
|
-
"newtype-ts": "$newtype-ts",
|
|
1305
|
-
"node-config": "$node-config",
|
|
1306
|
-
"node-forge": "$node-forge",
|
|
1307
|
-
"node-vibrant": "$node-vibrant",
|
|
1308
|
-
"nodemon": "$nodemon",
|
|
1309
|
-
"nope-validator": "$nope-validator",
|
|
1310
|
-
"normalize-url": "$normalize-url",
|
|
1311
|
-
"npm-run-all": "$npm-run-all",
|
|
1312
|
-
"oh-my-logo": "$oh-my-logo",
|
|
1313
|
-
"once": "$once",
|
|
1314
|
-
"onnxruntime": "$onnxruntime",
|
|
1315
|
-
"onnxruntime-common": "$onnxruntime-common",
|
|
1316
|
-
"onnxruntime-node": "$onnxruntime-node",
|
|
1317
|
-
"onnxruntime-react-native": "$onnxruntime-react-native",
|
|
1318
|
-
"onnxruntime-web": "$onnxruntime-web",
|
|
1319
|
-
"openapi-fetch": "$openapi-fetch",
|
|
1320
|
-
"openapi-typescript": "$openapi-typescript",
|
|
1321
|
-
"ora": "$ora",
|
|
1322
|
-
"p-limit": "$p-limit",
|
|
1323
|
-
"p-queue": "$p-queue",
|
|
1324
|
-
"p-retry": "$p-retry",
|
|
1325
|
-
"p-timeout": "$p-timeout",
|
|
1326
|
-
"pdfjs-dist": "$pdfjs-dist",
|
|
1327
|
-
"pi-tui": "$pi-tui",
|
|
1328
|
-
"picocolors": "$picocolors",
|
|
1329
|
-
"pitch-detect": "$pitch-detect",
|
|
1330
|
-
"pitchfinder": "$pitchfinder",
|
|
1331
|
-
"pitchy": "$pitchy",
|
|
1332
|
-
"playwright": "$playwright",
|
|
1333
|
-
"pngjs": "$pngjs",
|
|
1334
|
-
"publint": "$publint",
|
|
1335
|
-
"quick-lru": "$quick-lru",
|
|
1336
|
-
"rc-config-loader": "$rc-config-loader",
|
|
1337
|
-
"rdapper": "$rdapper",
|
|
1338
|
-
"react": "$react",
|
|
1339
|
-
"react-ascii-text": "$react-ascii-text",
|
|
1340
|
-
"react-devtools-core": "$react-devtools-core",
|
|
1341
|
-
"react-dom": "$react-dom",
|
|
1342
|
-
"react-feather": "$react-feather",
|
|
1343
|
-
"react-hook-form": "$react-hook-form",
|
|
1344
|
-
"react-icons": "$react-icons",
|
|
1345
|
-
"react-reconciler": "$react-reconciler",
|
|
1346
|
-
"readable-stream": "$readable-stream",
|
|
1347
|
-
"reflect-metadata": "$reflect-metadata",
|
|
1348
|
-
"remeda": "$remeda",
|
|
1349
|
-
"robots-parser": "$robots-parser",
|
|
1350
|
-
"rollup": "$rollup",
|
|
1351
|
-
"safe-buffer": "$safe-buffer",
|
|
1352
|
-
"scheduler": "$scheduler",
|
|
1353
|
-
"selfsigned": "$selfsigned",
|
|
1354
|
-
"sharp": "$sharp",
|
|
1355
|
-
"shifty": "$shifty",
|
|
1356
|
-
"silvery": "$silvery",
|
|
1357
|
-
"simple-statistics": "$simple-statistics",
|
|
1358
|
-
"sitemapper": "$sitemapper",
|
|
1359
|
-
"socket.io": "$socket.io",
|
|
1360
|
-
"socket.io-client": "$socket.io-client",
|
|
1361
|
-
"socks-proxy-agent": "$socks-proxy-agent",
|
|
1362
|
-
"soundtouchjs": "$soundtouchjs",
|
|
1363
|
-
"spectrogram-js": "$spectrogram-js",
|
|
1364
|
-
"stdout-update": "$stdout-update",
|
|
1365
|
-
"strip-json-comments": "$strip-json-comments",
|
|
1366
|
-
"superstruct": "$superstruct",
|
|
1367
|
-
"swagger-jsdoc": "$swagger-jsdoc",
|
|
1368
|
-
"swagger-ui-express": "$swagger-ui-express",
|
|
1369
|
-
"tailwind-merge": "$tailwind-merge",
|
|
1370
|
-
"tailwindcss": "$tailwindcss",
|
|
1371
|
-
"tangerine": "$tangerine",
|
|
1372
|
-
"terminal-canvas": "$terminal-canvas",
|
|
1373
|
-
"terminal-image": "$terminal-image",
|
|
1374
|
-
"terminal-kit": "$terminal-kit",
|
|
1375
|
-
"terminal-kit-plugins": "$terminal-kit-plugins",
|
|
1376
|
-
"terminalizer": "$terminalizer",
|
|
1377
|
-
"tesseract.js": "$tesseract.js",
|
|
1378
|
-
"through2": "$through2",
|
|
1379
|
-
"tinyrainbow": "$tinyrainbow",
|
|
1380
|
-
"tone": "$tone",
|
|
1381
|
-
"toonify": "$toonify",
|
|
1382
|
-
"ts-node": "$ts-node",
|
|
1383
|
-
"ts-pattern": "$ts-pattern",
|
|
1384
|
-
"turndown": "$turndown",
|
|
1385
|
-
"turndown-plugin-gfm": "$turndown-plugin-gfm",
|
|
1386
|
-
"typanion": "$typanion",
|
|
1387
|
-
"typebox": "$typebox",
|
|
1388
|
-
"typescript": "$typescript",
|
|
1389
|
-
"typescript-eslint": "$typescript-eslint",
|
|
1390
|
-
"unplugin-icons": "$unplugin-icons",
|
|
1391
|
-
"util-deprecate": "$util-deprecate",
|
|
1392
|
-
"valibot": "$valibot",
|
|
1393
|
-
"vest": "$vest",
|
|
1394
|
-
"video-stream-ascii": "$video-stream-ascii",
|
|
1395
|
-
"video-stream-ascii-webcam": "github:Im-Rises/video-stream-ascii-webcam",
|
|
1396
|
-
"video.js": "$video.js",
|
|
1397
|
-
"vite": "$vite",
|
|
1398
|
-
"vite-plugin-dts": "$vite-plugin-dts",
|
|
1399
|
-
"vite-plugin-singlefile": "$vite-plugin-singlefile",
|
|
1400
|
-
"vite-tsconfig-paths": "$vite-tsconfig-paths",
|
|
1401
|
-
"vitest": "$vitest",
|
|
1402
|
-
"wavefile": "$wavefile",
|
|
1403
|
-
"wavesurfer.js": "$wavesurfer.js",
|
|
1404
|
-
"web-audio-beat-detector": "$web-audio-beat-detector",
|
|
1405
|
-
"web-audio-engine": "$web-audio-engine",
|
|
1406
|
-
"web-worker": "$web-worker",
|
|
1407
|
-
"webaudio-peaks": "$webaudio-peaks",
|
|
1408
|
-
"whoiser": "$whoiser",
|
|
1409
|
-
"wrangler": "$wrangler",
|
|
1410
|
-
"xlsx": "$xlsx",
|
|
1411
|
-
"xtend": "$xtend",
|
|
1412
|
-
"yoctocolors": "$yoctocolors",
|
|
1413
|
-
"yoga-layout": "$yoga-layout",
|
|
1414
|
-
"yq-dns": "$yq-dns",
|
|
1415
|
-
"yup": "$yup",
|
|
1416
|
-
"zod": "$zod",
|
|
1417
|
-
"zod-openapi": "$zod-openapi",
|
|
1418
|
-
"zod-to-json-schema": "$zod-to-json-schema"
|
|
1419
|
-
}
|
|
1420
|
-
}
|