@getdashfy/server 0.1.0 → 0.1.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/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # @getdashfy/server
2
2
 
3
+ ## 0.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Fix npm publish by resolving workspace dependencies to semver ranges
8
+
9
+ - Updated dependencies []:
10
+ - @getdashfy/utils@0.1.1
11
+
3
12
  ## 0.1.0
4
13
 
5
14
  ### Initial Release
package/LICENSE CHANGED
File without changes
package/README.md CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getdashfy/server",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Dashfy server with real-time data streaming and multi-dashboard support",
5
5
  "keywords": [
6
6
  "dashfy",
@@ -47,18 +47,7 @@
47
47
  "engines": {
48
48
  "node": ">=20.0.0"
49
49
  },
50
- "scripts": {
51
- "build": "tsup",
52
- "check:circular": "madge --circular --extensions ts src/",
53
- "clean": "rm -rf .turbo dist node_modules",
54
- "dev": "tsup --watch",
55
- "test": "vitest run",
56
- "test:coverage": "vitest run --coverage",
57
- "test:watch": "vitest",
58
- "typecheck": "tsc --noEmit"
59
- },
60
50
  "dependencies": {
61
- "@getdashfy/utils": "workspace:*",
62
51
  "@fastify/cors": "^10.0.1",
63
52
  "@fastify/static": "^8.0.2",
64
53
  "chokidar": "^4.0.3",
@@ -68,15 +57,26 @@
68
57
  "socket.io": "^4.8.1",
69
58
  "undici": "^6.22.0",
70
59
  "yaml": "^2.8.1",
71
- "zod": "^3.24.1"
60
+ "zod": "^3.24.1",
61
+ "@getdashfy/utils": "0.1.1"
72
62
  },
73
63
  "devDependencies": {
74
- "@getdashfy/tsconfig": "workspace:*",
75
- "@getdashfy/types": "workspace:*",
76
64
  "@types/node": "^20.17.10",
77
65
  "@vitest/coverage-v8": "^2.1.9",
78
66
  "tsup": "^8.3.5",
79
67
  "typescript": "^5.7.2",
80
- "vitest": "^2.1.8"
68
+ "vitest": "^2.1.8",
69
+ "@getdashfy/tsconfig": "0.0.0",
70
+ "@getdashfy/types": "0.1.1"
71
+ },
72
+ "scripts": {
73
+ "build": "tsup",
74
+ "check:circular": "madge --circular --extensions ts src/",
75
+ "clean": "rm -rf .turbo dist node_modules",
76
+ "dev": "tsup --watch",
77
+ "test": "vitest run",
78
+ "test:coverage": "vitest run --coverage",
79
+ "test:watch": "vitest",
80
+ "typecheck": "tsc --noEmit"
81
81
  }
82
- }
82
+ }