-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.63 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
{
"name": "@expediagroup/graphql-kotlin-codegen",
"packageManager": "[email protected]",
"main": "dist/plugin.cjs",
"types": "dist/plugin.d.cts",
"files": [
"dist",
"README.md"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/ExpediaGroup/graphql-kotlin-codegen.git"
},
"bugs": {
"url": "https://github.com/ExpediaGroup/graphql-kotlin-codegen/issues"
},
"license": "Apache-2.0",
"dependencies": {
"@graphql-codegen/java-common": "3.0.0",
"@graphql-codegen/plugin-helpers": "5.1.0",
"@graphql-codegen/visitor-plugin-common": "5.6.0",
"ts-deepmerge": "7.0.2",
"valibot": "0.42.1"
},
"devDependencies": {
"@graphql-codegen/cli": "5.0.3",
"@total-typescript/ts-reset": "0.6.1",
"bun-types": "1.1.38",
"eslint": "9.17.0",
"husky": "9.1.7",
"prettier": "3.4.2",
"tsup": "8.3.5",
"typescript": "5.7.2",
"typescript-eslint": "8.18.0"
},
"scripts": {
"build": "tsup src/plugin.ts --clean --dts --external graphql",
"docs:build": "bun run build && bun --filter docs build",
"docs:start": "bun --filter docs start",
"format": "prettier --write .",
"format-check": "prettier --check .",
"integration": "bun run build && graphql-codegen && ./gradlew graphqlGenerateSDL && bun test ./test/integration.test.ts",
"lint": "bun ./scripts/check-headers.ts && eslint .",
"lint:fix": "bun ./scripts/fix-headers.ts && eslint --fix .",
"prepack": "bun run build",
"prepare": "husky",
"unit": "bun test ./test/plugin.test.ts"
},
"type": "module",
"workspaces": [
"docs"
]
}