-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.98 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
{
"name": "graphql-sock",
"version": "0.2.0",
"description": "GraphQL Semantic Output Conversion Kit - converts a cutting edge SDL file that supports semantic nullability into a more traditional SDL file legacy tools can support.",
"main": "dist/index.js",
"bin": {
"semantic-to-nullable": "dist/cli/to-nullable.js",
"semantic-to-strict": "dist/cli/to-strict.js"
},
"scripts": {
"prepack": "tsc",
"test": "node --test",
"watch": "tsc --watch",
"lint": "yarn prettier:check && eslint --ext .js,.jsx,.ts,.tsx,.graphql .",
"lint:fix": "eslint --ext .js,.jsx,.ts,.tsx,.graphql . --fix; prettier --cache --ignore-path .eslintignore --write '**/*.{js,jsx,ts,tsx,graphql,md,json}'",
"prettier:check": "prettier --cache --ignore-path .eslintignore --check '**/*.{js,jsx,ts,tsx,graphql,md,json}'"
},
"repository": {
"type": "git",
"url": "https+git://github.com/graphile/graphql-sock.git"
},
"bugs": {
"url": "https://github.com/graphile/graphql-sock/issues"
},
"homepage": "https://github.com/graphile/graphql-sock",
"keywords": [
"graphql",
"throw",
"error",
"errors",
"raise",
"exception",
"semantic",
"null",
"non-null",
"nullability",
"null",
"only",
"on",
"error",
"sdl",
"schema",
"convert",
"strip"
],
"author": "Benjie Gillam <[email protected]>",
"license": "MIT",
"dependencies": {
"graphql": "16.9.0-canary.pr.4192.1813397076f44a55e5798478e7321db9877de97a"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.7",
"@types/node": "^22.5.4",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint_d": "^13.0.0",
"prettier": "^3.3.3",
"typescript": "^5.6.2"
},
"prettier": {
"proseWrap": "always"
},
"files": [
"dist"
]
}