@pg-boss/dashboard 0.0.1 → 1.0.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 -1
- package/package.json +8 -3
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pg-boss/dashboard",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "Web dashboard for monitoring and managing pg-boss job queues",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pg-boss",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"dev:worker": "cross-env DATABASE_URL=postgres://postgres:postgres@127.0.0.1:5432/pgboss tsx scripts/worker.ts",
|
|
29
29
|
"build": "react-router build",
|
|
30
30
|
"start": "node ./build/server/index.js",
|
|
31
|
-
"prepublishOnly": "npm run build",
|
|
31
|
+
"prepublishOnly": "npm run typecheck && npm run test && npm run build",
|
|
32
32
|
"test": "vitest run --config vitest.config.frontend.ts && vitest run --config vitest.config.server.ts",
|
|
33
33
|
"test:frontend": "vitest run --config vitest.config.frontend.ts",
|
|
34
34
|
"test:server": "vitest run --config vitest.config.server.ts",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"isbot": "^5.1.34",
|
|
50
50
|
"lucide-react": "^0.563.0",
|
|
51
51
|
"pg": "^8.18.0",
|
|
52
|
-
"pg-boss": "^12.
|
|
52
|
+
"pg-boss": "^12.11.0",
|
|
53
53
|
"react": "^19.2.4",
|
|
54
54
|
"react-dom": "^19.2.4",
|
|
55
55
|
"react-router": "^7.13.0",
|
|
@@ -77,6 +77,11 @@
|
|
|
77
77
|
"vite": "^7.3.1",
|
|
78
78
|
"vitest": "^4.0.18"
|
|
79
79
|
},
|
|
80
|
+
"repository": {
|
|
81
|
+
"type": "git",
|
|
82
|
+
"url": "git+https://github.com/timgit/pg-boss.git"
|
|
83
|
+
},
|
|
84
|
+
"author": "timgit",
|
|
80
85
|
"license": "MIT",
|
|
81
86
|
"bugs": {
|
|
82
87
|
"url": "https://github.com/timgit/pg-boss/issues"
|