-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.67 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": "@graphql-ez/express",
"version": "0.10.1",
"homepage": "https://www.graphql-ez.com",
"repository": {
"type": "git",
"url": "https://github.com/PabloSzx/graphql-ez",
"directory": "packages/express"
},
"license": "MIT",
"author": "PabloSz <pablosaez1995@gmail.com>",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./*": {
"types": "./dist/*.d.ts",
"require": "./dist/*.js",
"import": "./dist/*.mjs"
}
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"dev": "bob-esbuild watch",
"prepack": "bob-esbuild build",
"prepare": "true",
"postpublish": "gh-release",
"test": "jest"
},
"dependencies": {
"@graphql-ez/utils": "workspace:^",
"@types/body-parser": "^1.19.6",
"@types/cors": "^2.8.17",
"cors": "^2.8.5"
},
"devDependencies": {
"@types/express": "^5.0.2",
"@types/node": "^22.15.29",
"bob-esbuild-cli": "5.0.0-alpha-227aebc.0",
"changesets-github-release": "^0.1.0",
"esbuild": "^0.25.4",
"express": "^4.21.2",
"graphql": "16.1.0-experimental-stream-defer.6",
"graphql-ez": "workspace:^",
"typescript": "^5.8.3"
},
"peerDependencies": {
"@types/node": "*",
"express": "*",
"graphql": "*",
"graphql-ez": "workspace:^"
},
"peerDependenciesMeta": {
"express": {
"optional": true
},
"graphql": {
"optional": true
}
},
"engines": {
"node": ">=22.16.0"
},
"publishConfig": {
"directory": "dist",
"linkDirectory": false
}
}