-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
78 lines (78 loc) · 1.87 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
{
"name": "@octokit/graphql-schema",
"version": "0.0.0-development",
"publishConfig": {
"access": "public",
"provenance": true
},
"description": "GitHubâs GraphQL Schema with validation. Automatically updated.",
"type": "module",
"scripts": {
"lint": "prettier --check '{bin,lib,test}/**/*.{js,ts}' *.md package.json",
"lint:fix": "prettier --write '{bin,lib,test}/**/*.{js,ts}' *.md package.json",
"test": "node test",
"validate:ts": "tsc --noEmit --noImplicitAny test/typescript-validate.ts",
"posttest": "npm run -s lint",
"download": "node bin/download.js",
"generate-typescript": "graphql-codegen",
"update": "npm run -s download && npm run -s generate-typescript"
},
"keywords": [
"github",
"graphql",
"schema",
"validation"
],
"author": "Gregor Martynus (https://twitter.com/gr2m)",
"license": "MIT",
"dependencies": {
"graphql": "^16.0.0",
"graphql-tag": "^2.10.3"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/typescript": "^4.0.0",
"@octokit/graphql": "^8.0.1",
"dotenv": "^16.0.0",
"execa": "^9.0.0",
"prettier": "^3.0.0",
"semantic-release": "^24.0.0",
"typescript": "^5.0.0"
},
"repository": "github:octokit/graphql-schema",
"types": "index.d.ts",
"sideEffects": false,
"release": {
"branches": [
"+([0-9]).x",
"main",
"next",
{
"name": "beta",
"prerelease": true
}
]
},
"codegen": {
"overwrite": true,
"schema": "schema.graphql",
"generates": {
"schema.d.ts": {
"plugins": [
"typescript"
],
"config": {
"enumsAsTypes": true,
"useImplementingTypes": true
}
}
}
},
"main": "index.js",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.js"
}
}
}