-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
63 lines (63 loc) · 1.57 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "vike-react-apollo",
"version": "0.1.1",
"type": "module",
"main": "dist/src/index.js",
"typings": "dist/src/index.js",
"exports": {
".": "./dist/src/index.js",
"./config": "./dist/integration/+config.js",
"./__internal/integration/Wrapper": "./dist/integration/Wrapper.js"
},
"scripts": {
"dev": "tsc --watch",
"build": "rimraf dist/ && tsc",
"release": "release-me patch",
"release:minor": "release-me minor",
"release:commit": "release-me commit"
},
"peerDependencies": {
"@apollo/client": ">=3.0.0",
"graphql": ">=16.0.0",
"@apollo/client-react-streaming": ">=0.11.0",
"react": ">=18.0.0",
"react-dom": ">=18.0.0",
"react-streaming": ">=0.3.41",
"vike-react": ">=0.4.18"
},
"devDependencies": {
"@brillout/release-me": "^0.3.8",
"@apollo/client": "^3.10.8",
"@apollo/client-react-streaming": "^0.11.2",
"graphql": "^16.9.0",
"@types/node": "^20.11.17",
"@types/react": "^18.2.55",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"@types/react-dom": "^18.3.0",
"react-streaming": "^0.3.43",
"rimraf": "^5.0.5",
"typescript": "^5.3.3",
"vike": "^0.4.197",
"vike-react": "^0.5.7",
"vite": "^5.4.0"
},
"dependencies": {
"react-error-boundary": "^4.0.12"
},
"typesVersions": {
"*": {
"config": [
"dist/integration/+config.d.ts"
],
"__internal/integration/Wrapper": [
"dist/integration/Wrapper.d.ts"
]
}
},
"files": [
"dist"
],
"repository": "github:vikejs/vike-react",
"license": "MIT"
}