-
-
Notifications
You must be signed in to change notification settings - Fork 574
/
package.json
80 lines (80 loc) · 1.73 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "graphile-export",
"version": "0.0.2-beta.24",
"description": "Export in-memory generated GraphQL schemas to JS files when built with our helpers.",
"type": "commonjs",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./helpers": {
"types": "./dist/helpers.d.ts",
"default": "./dist/helpers.js"
}
},
"scripts": {
"prepack": "tsc -b"
},
"repository": {
"type": "git",
"url": "git+https://github.com/graphile/crystal.git"
},
"keywords": [
"graphql",
"schema",
"memory",
"export",
"output",
"write",
"file",
"graphile",
"graphite"
],
"author": "Benjie Gillam <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/graphile/crystal/issues"
},
"homepage": "https://graphile.org/",
"dependencies": {
"@babel/generator": "^7.25.6",
"@babel/parser": "^7.25.6",
"@babel/template": "^7.25.0",
"@babel/traverse": "^7.25.6",
"@babel/types": "^7.25.6",
"@types/node": "^20.5.7",
"prettier": "^3.0.3",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16"
},
"peerDependencies": {
"eslint": "^8.48.0",
"grafast": "workspace:^",
"pg-sql2": "workspace:^5.0.0-beta.7"
},
"peerDependenciesMeta": {
"eslint": {
"optional": true
},
"pg-sql2": {
"optional": true
}
},
"files": [
"dist"
],
"devDependencies": {
"@types/babel__generator": "^7.6.8",
"@types/babel__template": "^7.4.4",
"@types/jest": "^29.5.4",
"@types/prettier": "^3.0.0",
"jest": "^29.6.4",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}