@bluelibs/runner-dev 4.3.3 → 4.3.5

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.
Files changed (2) hide show
  1. package/README.md +3 -1
  2. package/package.json +6 -2
package/README.md CHANGED
@@ -7,7 +7,9 @@ The way it works, is that this is a resource that opens a graphql server which o
7
7
  ## Install
8
8
 
9
9
  ```bash
10
- npm install @bluelibs/runner-dev
10
+ npm install -g @bluelibs/runner-dev
11
+ # or
12
+ npx @bluelibs/runner-dev
11
13
  ```
12
14
 
13
15
  ```ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bluelibs/runner-dev",
3
- "version": "4.3.3",
3
+ "version": "4.3.5",
4
4
  "description": "BlueLibs Runner DevTools",
5
5
  "main": "dist/index.js",
6
6
  "repository": {
@@ -68,7 +68,6 @@
68
68
  "react-dom": "^18.3.1",
69
69
  "reflect-metadata": "^0.2.2",
70
70
  "sass-embedded": "^1.90.0",
71
- "source-map-support": "^0.5.13",
72
71
  "supertest": "^7.1.4",
73
72
  "ts-jest": "^29.0.0",
74
73
  "ts-node": "^10.9.2",
@@ -97,10 +96,15 @@
97
96
  "graphql": "^16.11.0",
98
97
  "graphql-voyager": "^1.3.0",
99
98
  "lru-cache": "^11.1.0",
99
+ "source-map-support": "^0.5.13",
100
100
  "zod": "^3.25.76",
101
101
  "zod-to-json-schema": "^3.23.5"
102
102
  },
103
103
  "peerDependencies": {
104
104
  "@bluelibs/runner": "^4.4.0"
105
+ },
106
+ "overrides": {
107
+ "react": "^18.3.1",
108
+ "react-dom": "^18.3.1"
105
109
  }
106
110
  }