@graphql-yoga/graphiql 4.4.4-alpha-20260116142832-a2277336f0a5a4d64d168c98cf97b7513f70b9f7 → 4.4.4-alpha-20260119031406-1ff2bc4ac44c2954d99728ec06dc1575ef9c963b
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 +23 -0
- package/README.md +1 -1
- package/dist/monacoeditorwork/editor.worker.bundle.js +76 -76
- package/dist/monacoeditorwork/graphql.worker..bundle.js +2286 -2547
- package/dist/monacoeditorwork/json.worker.bundle.js +77 -77
- package/dist/yoga-graphiql.es.js +55433 -56648
- package/dist/yoga-graphiql.umd.js +450 -452
- package/package.json +8 -15
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graphql-yoga/graphiql",
|
|
3
|
-
"version": "4.4.4-alpha-
|
|
3
|
+
"version": "4.4.4-alpha-20260119031406-1ff2bc4ac44c2954d99728ec06dc1575ef9c963b",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "",
|
|
6
6
|
"repository": {
|
|
@@ -27,11 +27,6 @@
|
|
|
27
27
|
"graphql",
|
|
28
28
|
"graphiql"
|
|
29
29
|
],
|
|
30
|
-
"scripts": {
|
|
31
|
-
"build": "BUILD=true vite build",
|
|
32
|
-
"check": "tsc --pretty --noEmit",
|
|
33
|
-
"start": "vite"
|
|
34
|
-
},
|
|
35
30
|
"dependencies": {
|
|
36
31
|
"@graphiql/plugin-explorer": "5.1.1",
|
|
37
32
|
"@graphiql/toolkit": "0.11.3",
|
|
@@ -39,24 +34,22 @@
|
|
|
39
34
|
"graphiql": "5.2.0",
|
|
40
35
|
"graphql": "16.12.0",
|
|
41
36
|
"json-bigint-patch": "0.0.8",
|
|
42
|
-
"monaco-graphql": "^1.7.3",
|
|
43
37
|
"react": "19.2.0",
|
|
44
38
|
"react-dom": "19.2.0",
|
|
45
39
|
"tslib": "2.8.1"
|
|
46
40
|
},
|
|
47
41
|
"devDependencies": {
|
|
48
|
-
"@envelop/core": "workspace:^",
|
|
49
|
-
"@graphiql/react": "^0.37.3",
|
|
50
42
|
"@types/react": "19.2.4",
|
|
51
43
|
"@types/react-dom": "19.2.3",
|
|
52
44
|
"@vitejs/plugin-react": "5.1.1",
|
|
53
|
-
"monaco-editor": "^0.52.0",
|
|
54
|
-
"prettier": "^3.8.0",
|
|
55
|
-
"react-compiler-runtime": "^1.0.0",
|
|
56
|
-
"tsdown": "^0.20.0-beta.1",
|
|
57
45
|
"vite": "7.2.2",
|
|
58
46
|
"vite-plugin-monaco-editor": "1.1.0"
|
|
59
47
|
},
|
|
60
48
|
"sideEffects": false,
|
|
61
|
-
"bob": false
|
|
62
|
-
|
|
49
|
+
"bob": false,
|
|
50
|
+
"scripts": {
|
|
51
|
+
"build": "BUILD=true vite build",
|
|
52
|
+
"check": "tsc --pretty --noEmit",
|
|
53
|
+
"start": "vite"
|
|
54
|
+
}
|
|
55
|
+
}
|