@graphql-yoga/render-graphiql 5.18.0 → 5.18.1-alpha-20260116132159-d18a95d04a1e11d197fdf672a8be4836ceed0818
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/package.json +47 -30
- package/LICENSE +0 -23
- package/cjs/graphiql.js +0 -9
- package/cjs/index.js +0 -45
- package/cjs/package.json +0 -1
- package/esm/graphiql.js +0 -6
- package/esm/index.js +0 -41
- package/typings/graphiql.d.cts +0 -6
- package/typings/graphiql.d.ts +0 -6
- package/typings/index.d.cts +0 -2
- package/typings/index.d.ts +0 -2
package/package.json
CHANGED
|
@@ -1,62 +1,79 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graphql-yoga/render-graphiql",
|
|
3
|
-
"version": "5.18.
|
|
3
|
+
"version": "5.18.1-alpha-20260116132159-d18a95d04a1e11d197fdf672a8be4836ceed0818",
|
|
4
|
+
"type": "module",
|
|
4
5
|
"description": "",
|
|
5
|
-
"peerDependencies": {
|
|
6
|
-
"graphql-yoga": "^5.18.0"
|
|
7
|
-
},
|
|
8
6
|
"repository": {
|
|
9
7
|
"type": "git",
|
|
10
8
|
"url": "https://github.com/graphql-hive/graphql-yoga.git",
|
|
11
9
|
"directory": "packages/render-graphiql"
|
|
12
10
|
},
|
|
13
|
-
"keywords": [
|
|
14
|
-
"graphql",
|
|
15
|
-
"server",
|
|
16
|
-
"api",
|
|
17
|
-
"graphql-server"
|
|
18
|
-
],
|
|
19
11
|
"author": "Laurin Quast <laurinquast@googlemail.com>",
|
|
20
12
|
"license": "MIT",
|
|
21
13
|
"engines": {
|
|
22
14
|
"node": ">=18.0.0"
|
|
23
15
|
},
|
|
24
|
-
"main": "
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"typescript": {
|
|
28
|
-
"definition": "typings/index.d.ts"
|
|
29
|
-
},
|
|
30
|
-
"type": "module",
|
|
16
|
+
"main": "dist/index.cjs",
|
|
17
|
+
"typings": "dist/index.d.mts",
|
|
18
|
+
"module": "dist/index.mjs",
|
|
31
19
|
"exports": {
|
|
32
20
|
".": {
|
|
33
21
|
"require": {
|
|
34
|
-
"types": "./
|
|
35
|
-
"default": "./
|
|
22
|
+
"types": "./dist/index.d.cts",
|
|
23
|
+
"default": "./dist/index.cjs"
|
|
36
24
|
},
|
|
37
25
|
"import": {
|
|
38
|
-
"types": "./
|
|
39
|
-
"default": "./
|
|
26
|
+
"types": "./dist/index.d.mts",
|
|
27
|
+
"default": "./dist/index.mjs"
|
|
40
28
|
},
|
|
41
29
|
"default": {
|
|
42
|
-
"types": "./
|
|
43
|
-
"default": "./
|
|
30
|
+
"types": "./dist/index.d.mts",
|
|
31
|
+
"default": "./dist/index.mjs"
|
|
44
32
|
}
|
|
45
33
|
},
|
|
46
34
|
"./*": {
|
|
47
35
|
"require": {
|
|
48
|
-
"types": "./
|
|
49
|
-
"default": "./cjs
|
|
36
|
+
"types": "./dist/*.d.cts",
|
|
37
|
+
"default": "./dist/*.cjs"
|
|
50
38
|
},
|
|
51
39
|
"import": {
|
|
52
|
-
"types": "./
|
|
53
|
-
"default": "./
|
|
40
|
+
"types": "./dist/*.d.mts",
|
|
41
|
+
"default": "./dist/*.mjs"
|
|
54
42
|
},
|
|
55
43
|
"default": {
|
|
56
|
-
"types": "./
|
|
57
|
-
"default": "./
|
|
44
|
+
"types": "./dist/*.d.mts",
|
|
45
|
+
"default": "./dist/*.mjs"
|
|
58
46
|
}
|
|
59
47
|
},
|
|
60
48
|
"./package.json": "./package.json"
|
|
49
|
+
},
|
|
50
|
+
"files": [
|
|
51
|
+
"dist"
|
|
52
|
+
],
|
|
53
|
+
"keywords": [
|
|
54
|
+
"graphql",
|
|
55
|
+
"server",
|
|
56
|
+
"api",
|
|
57
|
+
"graphql-server"
|
|
58
|
+
],
|
|
59
|
+
"scripts": {
|
|
60
|
+
"build": "node scripts/yoga-bundle-string.mjs",
|
|
61
|
+
"check": "tsc --pretty --noEmit"
|
|
62
|
+
},
|
|
63
|
+
"devDependencies": {
|
|
64
|
+
"@graphql-yoga/graphiql": "workspace:^",
|
|
65
|
+
"graphql": "^16.12.0",
|
|
66
|
+
"graphql-yoga": "workspace:^",
|
|
67
|
+
"tsdown": "^0.20.0-beta.1"
|
|
68
|
+
},
|
|
69
|
+
"publishConfig": {
|
|
70
|
+
"access": "public"
|
|
71
|
+
},
|
|
72
|
+
"bob": false,
|
|
73
|
+
"buildOptions": {
|
|
74
|
+
"input": "./src/index.ts"
|
|
75
|
+
},
|
|
76
|
+
"typescript": {
|
|
77
|
+
"definition": "dist/index.d.mts"
|
|
61
78
|
}
|
|
62
|
-
}
|
|
79
|
+
}
|
package/LICENSE
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2018-2020 Graphcool
|
|
4
|
-
Copyright (c) 2020-2021 Prisma
|
|
5
|
-
Copyright (c) 2021- The Guild
|
|
6
|
-
|
|
7
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
9
|
-
in the Software without restriction, including without limitation the rights
|
|
10
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
11
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
12
|
-
furnished to do so, subject to the following conditions:
|
|
13
|
-
|
|
14
|
-
The above copyright notice and this permission notice shall be included in all
|
|
15
|
-
copies or substantial portions of the Software.
|
|
16
|
-
|
|
17
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
18
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
19
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
20
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
21
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
22
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
23
|
-
SOFTWARE.
|