-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 887 Bytes
/
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
{
"name": "graphql-operation-statistics",
"version": "1.2.2",
"license": "MIT",
"author": "tz",
"main": "dist/index.js",
"module": "dist/graphql-depth-limit.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tylerzey/graphql-operation-statistics.git"
},
"scripts": {
"lint": "prettier --write .",
"build": "tsup ./src/index.ts --dts",
"test": "vitest"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"graphql": "16.6.0",
"prettier": "2.7.1",
"tslib": "2.4.1",
"tsup": "6.5.0",
"typescript": "4.9.3",
"vitest": "0.25.2"
},
"peerDependencies": {
"graphql": "^16.3.0"
},
"engines": {
"node": ">=14"
},
"dependencies": {}
}