lduck 0.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/LICENSE.md +19 -0
- package/README.md +120 -0
- package/dist/index.js +1131 -0
- package/dist/static/client.js +9 -0
- package/package.json +71 -0
package/package.json
ADDED
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "lduck",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Pipe-friendly JSON log viewer powered by DuckDB",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"lduck": "dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist/"
|
|
11
|
+
],
|
|
12
|
+
"keywords": [
|
|
13
|
+
"log",
|
|
14
|
+
"log-viewer",
|
|
15
|
+
"json",
|
|
16
|
+
"duckdb",
|
|
17
|
+
"cli",
|
|
18
|
+
"stdin",
|
|
19
|
+
"pipe",
|
|
20
|
+
"structured-logging"
|
|
21
|
+
],
|
|
22
|
+
"repository": {
|
|
23
|
+
"type": "git",
|
|
24
|
+
"url": "https://github.com/syumai/lduck.git"
|
|
25
|
+
},
|
|
26
|
+
"homepage": "https://github.com/syumai/lduck",
|
|
27
|
+
"bugs": {
|
|
28
|
+
"url": "https://github.com/syumai/lduck/issues"
|
|
29
|
+
},
|
|
30
|
+
"license": "MIT",
|
|
31
|
+
"engines": {
|
|
32
|
+
"node": ">=20"
|
|
33
|
+
},
|
|
34
|
+
"packageManager": "pnpm@10.27.0",
|
|
35
|
+
"scripts": {
|
|
36
|
+
"dev": "vite",
|
|
37
|
+
"build": "vite build && vite build --ssr src/cli/index.ts",
|
|
38
|
+
"test": "vitest run",
|
|
39
|
+
"lint": "oxlint --type-aware --type-check src",
|
|
40
|
+
"format": "oxfmt src",
|
|
41
|
+
"format:check": "oxfmt --check src",
|
|
42
|
+
"generate-logs": "node --experimental-strip-types scripts/generate-logs.ts",
|
|
43
|
+
"generate-logs:http": "node --experimental-strip-types scripts/generate-logs-http.ts"
|
|
44
|
+
},
|
|
45
|
+
"dependencies": {
|
|
46
|
+
"@duckdb/node-api": "1.4.4-r.1",
|
|
47
|
+
"@hono/node-server": "^1.19.9",
|
|
48
|
+
"@hono/node-ws": "^1.3.0",
|
|
49
|
+
"@hono/zod-validator": "^0.7.6",
|
|
50
|
+
"hono": "^4.12.2",
|
|
51
|
+
"react": "^19.2.4",
|
|
52
|
+
"react-dom": "^19.2.4",
|
|
53
|
+
"zod": "^4.3.6"
|
|
54
|
+
},
|
|
55
|
+
"devDependencies": {
|
|
56
|
+
"@hono/vite-dev-server": "^0.25.0",
|
|
57
|
+
"@types/node": "^25.3.0",
|
|
58
|
+
"@types/react": "^19.2.14",
|
|
59
|
+
"@types/react-dom": "^19.2.3",
|
|
60
|
+
"@types/ws": "^8.18.1",
|
|
61
|
+
"@vitejs/plugin-react": "^5.1.4",
|
|
62
|
+
"oxfmt": "^0.35.0",
|
|
63
|
+
"oxlint": "^1.50.0",
|
|
64
|
+
"oxlint-tsgolint": "^0.14.2",
|
|
65
|
+
"typescript": "^5.9.3",
|
|
66
|
+
"vite": "^7.3.1",
|
|
67
|
+
"vite-ssr-components": "^0.5.2",
|
|
68
|
+
"vitest": "^4.0.18",
|
|
69
|
+
"ws": "^8.19.0"
|
|
70
|
+
}
|
|
71
|
+
}
|