-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.91 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@litewarp/graphile-relation-inputs-plugin",
"description": "A plugin for PostGraphile v5 that allows you to mutate a resource's nested relations",
"version": "0.0.3-alpha",
"license": "MIT",
"type": "module",
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/litewarp/graphile-relation-inputs-plugin",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": ["dist"],
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@eslint/compat": "^1.2.3",
"@eslint/eslintrc": "^3.2.0",
"@graphile/simplify-inflection": "^8.0.0-beta.5",
"@types/bun": "latest",
"@types/pg": "^8.11.10",
"eslint": "^9.16.0",
"eslint-plugin-graphile-export": "^0.0.2-beta.4",
"graphql-config": "^5.1.3",
"husky": "^9.1.7",
"pg": "^8.13.1",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0",
"vitest": "^2.1.8"
},
"dependencies": {
"graphql": "16.1.0-experimental-stream-defer.6",
"postgraphile": "^5.0.0-beta.35"
},
"peerDependencies": {
"typescript": "^5.7.2"
},
"overrides": {
"eslint": "^9.16.0",
"graphql": "16.1.0-experimental-stream-defer.6"
},
"scripts": {
"build": "tsup",
"test": "vitest",
"test:ci": "vitest run",
"format-and-lint": "biome check && eslint",
"format-and-lint:fix": "biome check --unsafe --fix && eslint --fix",
"format-and-lint:staged": "biome check -error-on-warnings --no-errors-on-unmatched --staged && eslint",
"pre-commit": "bun format-and-lint && bun typecheck && bun test:ci && git add -A",
"prepare": "husky",
"typecheck": "tsc --noEmit",
"typecheck:watch": "tsc --noEmit --watch"
},
"packageManager": "bun@1.1.38",
"trustedDependencies": ["@biomejs/biome", "esbuild"]
}