-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.33 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.33 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@as-integrations/h3",
"version": "2.0.3",
"description": "An Apollo Server integration for use with h3 or Nuxt",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/apollo-server-integrations/apollo-server-integration-h3.git"
},
"files": [
"dist"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./websocket": {
"types": "./dist/websocket.d.ts",
"import": "./dist/websocket.mjs",
"require": "./dist/websocket.cjs"
}
},
"scripts": {
"dev:prepare": "unbuild --stub",
"build": "unbuild",
"test": "vitest dev",
"test:integration": "jest",
"test:types": "tsc --noEmit --skipLibCheck",
"lint": "pnpm lint:oxlint && pnpm lint:oxfmt",
"lint:oxlint": "oxlint --type-aware",
"lint:oxfmt": "oxfmt --check",
"example:simple": "listhen -w --open ./examples/simple.ts",
"example:websocket": "listhen -w --ws --open ./examples/websocket.ts",
"prepack": "unbuild",
"release": "pnpm test && standard-version && git push --follow-tags && pnpm publish"
},
"dependencies": {
"@apollo/utils.withrequired": "3.0.0"
},
"devDependencies": {
"@apollo/server": "5.5.1",
"@apollo/server-integration-testsuite": "5.5.1",
"@graphql-tools/schema": "10.0.34",
"@jest/globals": "30.4.1",
"@typescript-eslint/parser": "8.60.1",
"@vitest/coverage-v8": "4.1.9",
"commit-and-tag-version": "12.7.3",
"crossws": "0.3.5",
"graphql": "16.14.2",
"graphql-subscriptions": "3.0.0",
"graphql-ws": "6.0.8",
"h3": "1.15.11",
"jest": "30.4.2",
"listhen": "1.10.0",
"oxfmt": "0.53.0",
"oxlint": "1.58.0",
"oxlint-tsgolint": "0.15.0",
"ts-jest": "29.4.11",
"typescript": "5.9.3",
"unbuild": "3.6.1",
"vitest": "4.1.9"
},
"peerDependencies": {
"@apollo/server": "^4.1.1 || ^5.0.0",
"crossws": "^0.3.0",
"graphql": "^16.0.0",
"graphql-ws": "^5.0.0 || ^6.0.0",
"h3": "^1.11.0"
},
"peerDependenciesMeta": {
"graphql-ws": {
"optional": true
}
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "pnpm@10.34.4"
}