-
-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.61 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.61 KB
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.2",
"homepage": "https://github.com/vikejs/vike-react/tree/main/packages/vike-react-apollo#readme",
"type": "module",
"main": "dist/index.js",
"typings": "dist/index.js",
"exports": {
".": "./dist/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.6.4"
},
"devDependencies": {
"@brillout/release-me": "^0.4.7",
"@apollo/client": "^3.10.8",
"@apollo/client-react-streaming": "^0.11.2",
"graphql": "^16.9.0",
"@types/node": "^24.0.8",
"@types/react": "^19.0.10",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"@types/react-dom": "^19.0.4",
"react-streaming": "^0.4.2",
"rimraf": "^5.0.5",
"typescript": "^5.8.3",
"vike": "^0.4.235",
"vike-react": "0.6.4",
"vite": "^6.2.5"
},
"dependencies": {
"react-error-boundary": "^4.0.12"
},
"typesVersions": {
"*": {
"config": [
"dist/integration/+config.d.ts"
],
"__internal/integration/Wrapper": [
"dist/integration/Wrapper.d.ts"
]
}
},
"files": [
"dist"
],
"license": "MIT"
}