@obsfx/trekker-dashboard 1.11.2 → 1.12.0
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 +1 -0
- package/bin/trekker-dashboard.js +32 -32
- package/dist/client/assets/index-De2cFKKZ.css +1 -0
- package/dist/client/assets/index-baOAD-fx.js +347 -0
- package/dist/client/index.html +2 -2
- package/dist/server/index.js +19575 -19339
- package/package.json +58 -45
- package/dist/client/assets/index-TQccN0iy.js +0 -342
- package/dist/client/assets/index-v4HrZd8l.css +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@obsfx/trekker-dashboard",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.12.0",
|
|
4
4
|
"description": "Kanban board dashboard for Trekker issue tracker. Connects to local .trekker database.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -17,6 +17,13 @@
|
|
|
17
17
|
"build": "bun run build:client && bun run build:server",
|
|
18
18
|
"build:client": "vite build",
|
|
19
19
|
"build:server": "bun build src/server/index.ts --outdir dist/server --target bun",
|
|
20
|
+
"lint": "eslint . --cache",
|
|
21
|
+
"lint:fix": "eslint . --fix --cache",
|
|
22
|
+
"knip": "knip",
|
|
23
|
+
"format": "prettier --write \"src/**/*.{ts,tsx}\" \"tests/**/*.{ts,tsx}\" \"vite.config.ts\" \"eslint.config.mjs\"",
|
|
24
|
+
"format:check": "prettier --check \"src/**/*.{ts,tsx}\" \"tests/**/*.{ts,tsx}\" \"vite.config.ts\" \"eslint.config.mjs\"",
|
|
25
|
+
"check": "bun run lint && bun run format:check",
|
|
26
|
+
"duplicates": "jscpd src --format typescript,tsx --min-lines 5 --min-tokens 40 --gitignore --reporters console",
|
|
20
27
|
"start": "bun run src/cli.ts",
|
|
21
28
|
"release:patch": "bun run build && npm version patch && npm publish --access public",
|
|
22
29
|
"release:minor": "bun run build && npm version minor && npm publish --access public",
|
|
@@ -47,51 +54,57 @@
|
|
|
47
54
|
"bun": ">=1.0.0"
|
|
48
55
|
},
|
|
49
56
|
"dependencies": {
|
|
50
|
-
"@hono/zod-validator": "
|
|
51
|
-
"@hookform/resolvers": "
|
|
52
|
-
"@radix-ui/react-dialog": "
|
|
53
|
-
"@radix-ui/react-
|
|
54
|
-
"@radix-ui/react-
|
|
55
|
-
"@radix-ui/react-
|
|
56
|
-
"@radix-ui/react-
|
|
57
|
-
"@radix-ui/react-
|
|
58
|
-
"@radix-ui/react-
|
|
59
|
-
"@
|
|
60
|
-
"@
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"react": "
|
|
72
|
-
"react-
|
|
73
|
-
"react-
|
|
74
|
-
"
|
|
75
|
-
"
|
|
76
|
-
"
|
|
77
|
-
"
|
|
78
|
-
"
|
|
79
|
-
"
|
|
80
|
-
"
|
|
81
|
-
"zod": "^4.3.5",
|
|
82
|
-
"zustand": "^5.0.10"
|
|
57
|
+
"@hono/zod-validator": "0.7.6",
|
|
58
|
+
"@hookform/resolvers": "5.2.2",
|
|
59
|
+
"@radix-ui/react-dialog": "1.1.15",
|
|
60
|
+
"@radix-ui/react-label": "2.1.8",
|
|
61
|
+
"@radix-ui/react-progress": "1.1.8",
|
|
62
|
+
"@radix-ui/react-scroll-area": "1.2.10",
|
|
63
|
+
"@radix-ui/react-select": "2.2.6",
|
|
64
|
+
"@radix-ui/react-slot": "1.2.4",
|
|
65
|
+
"@radix-ui/react-tooltip": "1.2.8",
|
|
66
|
+
"@tailwindcss/postcss": "4.1.18",
|
|
67
|
+
"@tanstack/react-query": "5.90.19",
|
|
68
|
+
"autoprefixer": "10.4.23",
|
|
69
|
+
"class-variance-authority": "0.7.1",
|
|
70
|
+
"clsx": "2.1.1",
|
|
71
|
+
"commander": "13.1.0",
|
|
72
|
+
"dayjs": "1.11.19",
|
|
73
|
+
"drizzle-orm": "0.38.4",
|
|
74
|
+
"hono": "4.7.0",
|
|
75
|
+
"lucide-react": "0.562.0",
|
|
76
|
+
"react": "18.3.1",
|
|
77
|
+
"react-dom": "18.3.1",
|
|
78
|
+
"react-hook-form": "7.71.1",
|
|
79
|
+
"react-markdown": "10.1.0",
|
|
80
|
+
"react-router-dom": "7.12.0",
|
|
81
|
+
"remark-gfm": "4.0.1",
|
|
82
|
+
"sonner": "1.7.1",
|
|
83
|
+
"tailwind-merge": "3.4.0",
|
|
84
|
+
"tailwindcss": "4.1.18",
|
|
85
|
+
"usehooks-ts": "3.1.1",
|
|
86
|
+
"zod": "4.3.5",
|
|
87
|
+
"zustand": "5.0.10"
|
|
83
88
|
},
|
|
84
89
|
"devDependencies": {
|
|
85
|
-
"@tailwindcss/typography": "
|
|
86
|
-
"@types/bun": "
|
|
87
|
-
"@types/node": "
|
|
88
|
-
"@types/react": "
|
|
89
|
-
"@types/react-dom": "
|
|
90
|
-
"@vitejs/plugin-react": "
|
|
91
|
-
"concurrently": "
|
|
92
|
-
"
|
|
93
|
-
"
|
|
94
|
-
"
|
|
95
|
-
"
|
|
90
|
+
"@tailwindcss/typography": "0.5.19",
|
|
91
|
+
"@types/bun": "1.2.2",
|
|
92
|
+
"@types/node": "22.10.0",
|
|
93
|
+
"@types/react": "18.3.0",
|
|
94
|
+
"@types/react-dom": "18.3.0",
|
|
95
|
+
"@vitejs/plugin-react": "4.4.0",
|
|
96
|
+
"concurrently": "9.1.0",
|
|
97
|
+
"eslint": "10.0.2",
|
|
98
|
+
"eslint-config-prettier": "10.1.8",
|
|
99
|
+
"eslint-plugin-simple-import-sort": "13.0.0",
|
|
100
|
+
"eslint-plugin-unicorn": "63.0.0",
|
|
101
|
+
"jscpd": "^4.0.8",
|
|
102
|
+
"knip": "^6.3.1",
|
|
103
|
+
"postcss": "8.5.6",
|
|
104
|
+
"prettier": "3.8.1",
|
|
105
|
+
"tw-animate-css": "1.4.0",
|
|
106
|
+
"typescript": "5.7.3",
|
|
107
|
+
"typescript-eslint": "8.56.1",
|
|
108
|
+
"vite": "6.0.0"
|
|
96
109
|
}
|
|
97
110
|
}
|