forked from graphile/crystal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) 路 3.47 KB
/
Copy pathpackage.json
File metadata and controls
129 lines (129 loc) 路 3.47 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "graphile-build-pg",
"version": "5.1.3",
"description": "PostgreSQL plugins for Graphile Build - build a supercharged GraphQL schema by reflection over a PostgreSQL database and executed by Grafast.",
"type": "commonjs",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./@dataplan/pg": {
"types": "./fwd/@dataplan/pg/index.d.ts",
"node": "./fwd/@dataplan/pg/index.js",
"default": "./fwd/@dataplan/pg/index.js"
},
"./@dataplan/pg/adaptors/pg": {
"types": "./fwd/@dataplan/pg/adaptors/pg/index.d.ts",
"node": "./fwd/@dataplan/pg/adaptors/pg/index.js",
"default": "./fwd/@dataplan/pg/adaptors/pg/index.js"
},
"./@dataplan/pg/pg-sql2": {
"types": "./fwd/@dataplan/pg/pg-sql2/index.d.ts",
"node": "./fwd/@dataplan/pg/pg-sql2/index.js",
"default": "./fwd/@dataplan/pg/pg-sql2/index.js"
},
"./pg-introspection": {
"types": "./fwd/pg-introspection/index.d.ts",
"node": "./fwd/pg-introspection/index.js",
"default": "./fwd/pg-introspection/index.js"
},
"./pg-sql2": {
"types": "./fwd/pg-sql2/index.d.ts",
"node": "./fwd/pg-sql2/index.js",
"default": "./fwd/pg-sql2/index.js"
}
},
"scripts": {
"prepack": "node ../../scripts/build-release.mts",
"build-package": "yarn build",
"test": "jest",
"build": "tsc -b && cp src/.npmignore dist/.npmignore"
},
"repository": {
"type": "git",
"url": "git+https://github.com/graphile/crystal.git"
},
"keywords": [
"graphile",
"graphql",
"engine",
"postgraphile",
"pg",
"postgres",
"postgresql",
"graphqljs",
"plugin",
"build",
"extension",
"graphite"
],
"author": "Benjie Gillam <code@benjiegillam.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/graphile/crystal/issues"
},
"homepage": "https://graphile.org/graphile-build/",
"dependencies": {
"@types/node": "^22.19.1",
"debug": "^4.4.3",
"graphile-config": "workspace:^",
"jsonwebtoken": "^9.0.2",
"pg-introspection": "workspace:^",
"pg-sql2": "workspace:^",
"tslib": "^2.8.1"
},
"peerDependencies": {
"@dataplan/pg": "workspace:^1.0.0-rc.7",
"grafast": "workspace:^1.0.0-rc.8",
"graphile-build": "workspace:^5.0.0-rc.5",
"graphile-config": "workspace:^1.0.0-rc.5",
"graphql": "^16.9.0",
"pg": "^8.7.1",
"pg-sql2": "workspace:^5.0.0-rc.4",
"tamedevil": "workspace:^0.1.0-rc.5"
},
"peerDependenciesMeta": {
"pg": {
"optional": true
}
},
"engines": {
"node": ">=22"
},
"files": [
"dist",
"fwd"
],
"devDependencies": {
"@envelop/core": "^5.3.0",
"@envelop/parser-cache": "^10.0.0",
"@envelop/validation-cache": "^10.0.0",
"@fastify/static": "^5.0.0",
"@types/debug": "^4.1.12",
"@types/express": "^4.17.25",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.10",
"chalk": "^4.1.2",
"express": "^4.21.2",
"fastify": "^5.8.3",
"grafast": "workspace:^",
"grafserv": "workspace:^",
"graphile-export": "workspace:^",
"graphql": "^16.9.0",
"graphql-helix": "^1.13.0",
"graphql-ws": "^6.0.5",
"jest": "^30.2.0",
"pg": "^8.16.3",
"ruru": "workspace:^",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"ws": "^8.18.3"
},
"publishConfig": {
"directory": "release",
"access": "public"
}
}