-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.12 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.12 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
{
"name": "@elysiajs/apollo",
"description": "Plugin for Elysia for using GraphQL Apollo",
"version": "1.4.0",
"author": {
"name": "saltyAom",
"url": "https://github.com/SaltyAom",
"email": "saltyaom@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/elysiajs/elysia-apollo"
},
"main": "./dist/cjs/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/cjs/index.js"
}
},
"bugs": "https://github.com/elysiajs/elysia-apollo/issues",
"homepage": "https://github.com/elysiajs/elysia-apollo",
"keywords": [
"elysia",
"apollo",
"graphql"
],
"license": "MIT",
"scripts": {
"dev": "bun run --hot example/index.ts",
"test": "bun test && npm run test:node",
"test:node": "npm install --prefix ./test/node/cjs/ && npm install --prefix ./test/node/esm/ && node ./test/node/cjs/index.js && node ./test/node/esm/index.js",
"build": "bun build.ts",
"release": "npm run build && npm run test && npm publish --access public"
},
"dependencies": {
"@apollo/server": "4.10.4",
"@apollo/server-plugin-landing-page-graphql-playground": "^4.0.1",
"graphql": "^16.6.0",
"graphql-tag": "^2.12.6"
},
"devDependencies": {
"@types/bun": "1.1.14",
"elysia": "1.4.0",
"eslint": "9.6.0",
"tsup": "^8.1.0",
"typescript": "^5.5.3"
},
"peerDependencies": {
"elysia": ">= 1.4.0"
},
"peerDependenciesMeta": {
"@apollo/server-plugin-landing-page-graphql-playground": {
"optional": true
},
"@apollo/server": {
"optional": true
},
"@elysiajs/cors": {
"optional": true
},
"graphql": {
"optional": true
},
"graphql-tag": {
"optional": true
}
}
}