-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.1 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.1 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "graphql-suite",
"version": "0.9.1",
"description": "Auto-generated GraphQL CRUD, type-safe clients, and React Query hooks from Drizzle PostgreSQL schemas",
"author": "https://github.com/dmythro",
"license": "MIT",
"keywords": [
"drizzle",
"graphql",
"orm",
"postgresql",
"postgres",
"typescript",
"crud",
"react",
"react-query",
"tanstack",
"type-safe",
"schema",
"api"
],
"repository": {
"type": "git",
"url": "git+https://github.com/annexare/graphql-suite.git"
},
"homepage": "https://graphql-suite.annexare.com",
"bugs": {
"url": "https://github.com/annexare/graphql-suite/issues"
},
"type": "module",
"files": [
"schema.js",
"schema.d.ts",
"client.js",
"client.d.ts",
"query.js",
"query.d.ts",
"LICENSE",
"README.md"
],
"exports": {
"./schema": {
"types": "./schema.d.ts",
"import": "./schema.js"
},
"./client": {
"types": "./client.d.ts",
"import": "./client.js"
},
"./query": {
"types": "./query.d.ts",
"import": "./query.js"
}
},
"dependencies": {
"@graphql-suite/client": "0.9.1",
"@graphql-suite/query": "0.9.1",
"@graphql-suite/schema": "0.9.1",
"graphql": "catalog:"
},
"workspaces": {
"packages": [
"packages/*",
"apps/*"
],
"catalog": {
"@biomejs/biome": "2.4.11",
"@tanstack/react-query": "5.99.0",
"@types/bun": "1.3.12",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"drizzle-orm": "0.45.2",
"graphql": "16.13.2",
"graphql-parse-resolve-info": "4.14.1",
"linkedom": "0.18.12",
"react": "19.2.5",
"react-dom": "19.2.5",
"typescript": "6.0.2"
}
},
"scripts": {
"build": "bun run --filter '@graphql-suite/schema' build && bun run --filter '@graphql-suite/client' build && bun run --filter '@graphql-suite/query' build",
"check": "bun run check-types && bun run lint:check && bun run test",
"check-types": "bun run --filter '*' check-types",
"ci": "bun run check-types && bun run lint:check && bun run test",
"dev:docs": "bun run --filter 'docs' dev",
"lint": "bunx @biomejs/biome check --write .",
"lint:check": "bunx @biomejs/biome check .",
"prepare-publish": "bun run scripts/prepare-publish.ts",
"publish-all": "npm publish packages/schema/dist && npm publish packages/client/dist && npm publish packages/query/dist && npm publish dist/@drizzle-graphql-suite/schema && npm publish dist/@drizzle-graphql-suite/client && npm publish dist/@drizzle-graphql-suite/query && npm publish dist/graphql-suite && npm publish dist/drizzle-graphql-suite",
"publish-new": "npm publish packages/schema/dist && npm publish packages/client/dist && npm publish packages/query/dist && npm publish dist/graphql-suite",
"release": "bun run build && bun run prepare-publish",
"test": "bun run --filter '*' test",
"version": "bun run scripts/version-bump.ts"
},
"devDependencies": {
"@biomejs/biome": "catalog:",
"@types/bun": "catalog:",
"typescript": "catalog:"
}
}