-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.08 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
{
"name": "graphql-print",
"version": "1.0.1",
"description": "Print any GraphQL AST node, pretty or minified, with or without comments",
"keywords": [
"graphql",
"print",
"prettify",
"format",
"minify"
],
"author": "Thomas Heyenbrock<[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/thomasheyenbrock/graphql-print"
},
"homepage": "https://github.com/thomasheyenbrock/graphql-print#readme",
"bugs": {
"url": "https://github.com/thomasheyenbrock/graphql-print/issues"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"benchmark": "node test/benchmark.mjs",
"build": "tsup src/index.ts --format esm,cjs --dts --minify --external graphql",
"check": "eslint --max-warnings 0 . && prettier --check '**/*.{js,ts,json,md}' && ALL_GRAPHQL_VERSIONS=true vitest run",
"format": "prettier --write '**/*.{js,ts,json,md}'",
"prepublish": "pnpm install && pnpm build && pnpm check",
"test": "vitest"
},
"peerDependencies": {
"graphql": ">=15.0.0"
},
"devDependencies": {
"@types/benchmark": "^2.1.2",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"benchmark": "^2.1.4",
"eslint": "^8.34.0",
"graphql_15_0": "npm:graphql@~15.0",
"graphql_15_1": "npm:graphql@~15.1",
"graphql_15_2": "npm:graphql@~15.2",
"graphql_15_3": "npm:graphql@~15.3",
"graphql_15_4": "npm:graphql@~15.4",
"graphql_15_5": "npm:graphql@~15.5",
"graphql_15_6": "npm:graphql@~15.6",
"graphql_15_7": "npm:graphql@~15.7",
"graphql_15_8": "npm:graphql@~15.8",
"graphql_16_0": "npm:graphql@~16.0",
"graphql_16_1": "npm:graphql@~16.1",
"graphql_16_2": "npm:graphql@~16.2",
"graphql_16_3": "npm:graphql@~16.3",
"graphql_16_4": "npm:graphql@~16.4",
"graphql_16_5": "npm:graphql@~16.5",
"graphql_16_6": "npm:graphql@~16.6",
"prettier": "^2.8.4",
"tsup": "^6.5.0",
"typescript": "^4.9.5",
"vitest": "^0.28.4"
}
}