-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.1 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
79
80
81
82
83
84
85
{
"name": "@graphql-edge/proxy",
"author": "IlijaNL",
"version": "1.0.0",
"types": "lib/index.d.ts",
"main": "lib/index.js",
"files": [
"./lib",
"CHANGELOG.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ilijaNL/graphql-edge-proxy.git"
},
"keywords": [
"graphql",
"security",
"nextjs",
"proxy",
"workers",
"serverless",
"edge",
"functions"
],
"bugs": {
"url": "https://github.com/ilijaNL/graphql-edge-proxy/issues"
},
"homepage": "https://github.com/ilijaNL/graphql-edge-proxy#readme",
"scripts": {
"build": "tsc",
"lint": "eslint ./src",
"dev": "tsc --watch",
"tc": "tsc --noEmit",
"ci:publish": "yarn build && changeset publish",
"test": "tap --ts --no-check-coverage tests/*.test.ts",
"posttest": "tap --coverage-report=html --no-check-coverage"
},
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"sideEffects": false,
"devDependencies": {
"@changesets/cli": "2.26.0",
"@types/node": "^16.0.0",
"@types/tap": "^15.0.8",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.4.0",
"tap": "^16.3.4",
"ts-node": "^10.7.0",
"tsup": "^6.6.0",
"typescript": "^4.9.0"
},
"exports": {
".": {
"types": "./lib/index.d.ts",
"require": "./lib/index.js",
"import": "./lib/index.js"
},
"./lib/operations": {
"types": "./lib/operations.d.ts",
"require": "./lib/operations.js",
"import": "./lib/operations.js"
},
"./lib/reporting": {
"types": "./lib/reporting.d.ts",
"require": "./lib/reporting.js",
"import": "./lib/reporting.js"
},
"./lib/signature": {
"types": "./lib/signature.d.ts",
"require": "./lib/signature.js",
"import": "./lib/signature.js"
},
"./package.json": "./package.json"
},
"dependencies": {
"@graphql-tools/documents": "^0.1.0",
"@whatwg-node/fetch": "^0.8.8",
"graphql": "^16.6.0"
}
}