-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.37 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
{
"name": "gqloom",
"version": "0.0.0",
"description": "Create GraphQL schema and resolvers with TypeScript, using Zod, Valibot or Yup!",
"main": "index.js",
"scripts": {
"test": "vitest --typecheck",
"coverage": "vitest run --coverage",
"format": "biome format --write .",
"lint": "biome lint --write .",
"fix": "biome check --write .",
"check": "biome check --write . && pnpm run check:type",
"check:type": "tsc --noEmit",
"build": "pnpm -F '@gqloom/*' run build",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json}": ["biome check --no-errors-on-unmatched --write"],
"*.{json,toml,graphql,gql}": "biome format --no-errors-on-unmatched --write"
},
"keywords": [],
"author": "xcfox",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@graphql-tools/utils": "^10.1.3",
"@types/node": "^20.11.30",
"@vitest/coverage-v8": "^2.1.8",
"graphql": "^16.8.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"tsup": "^8.1.0",
"tsx": "^4.7.2",
"typescript": "^5.4.3",
"vitest": "^2.1.8"
},
"packageManager": "[email protected]+sha512.c8180b3fbe4e4bca02c94234717896b5529740a6cbadf19fa78254270403ea2f27d4e1d46a08a0f56c89b63dc8ebfd3ee53326da720273794e6200fcf0d184ab",
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
}
}