generated from unjs/template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.29 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@as-integrations/h3",
"version": "1.2.1",
"description": "An Apollo Server integration for use with h3 or Nuxt",
"repository": "github:apollo-server-integrations/apollo-server-integration-h3",
"license": "MIT",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev:prepare": "unbuild --stub",
"build": "unbuild",
"test": "vitest dev",
"test:integration": "jest",
"test:types": "tsc --noEmit --skipLibCheck",
"lint": "pnpm lint:eslint && pnpm lint:prettier",
"lint:eslint": "eslint --report-unused-disable-directives .",
"lint:prettier": "prettier --check --ignore-path .gitignore . '!pnpm-lock.yaml'",
"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"
},
"peerDependencies": {
"@apollo/server": "^4.1.1",
"h3": "^1.11.0",
"graphql": "^16.0.0",
"graphql-ws": "^5.0.0",
"crossws": "^0.2.4 || ^0.3.0"
},
"peerDependenciesMeta": {
"graphql-ws": {
"optional": true
}
},
"devDependencies": {
"@apollo/server": "^4.11.2",
"@apollo/server-integration-testsuite": "^4.11.2",
"@apollo/utils.withrequired": "^3.0.0",
"@graphql-tools/schema": "^10.0.8",
"@jest/globals": "^29.7.0",
"@typescript-eslint/parser": "^8.14.0",
"crossws": "^0.3.1",
"@vitest/coverage-v8": "^2.1.5",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-unjs": "^0.4.1",
"eslint-plugin-unused-imports": "^4.1.4",
"graphql": "^16.9.0",
"graphql-subscriptions": "^2.0.0",
"graphql-ws": "^5.16.0",
"h3": "^1.13.0",
"jest": "^29.7.0",
"listhen": "^1.9.0",
"prettier": "^3.3.3",
"standard-version": "^9.5.0",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3",
"unbuild": "^2.0.0",
"vitest": "^2.1.5"
},
"packageManager": "[email protected]",
"engines": {
"node": "^16.10.0 || >=18.0.0"
}
}