-
-
Notifications
You must be signed in to change notification settings - Fork 618
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 1.9 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 1.9 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
{
"name": "graphile-export",
"version": "1.0.1",
"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": "node ../../scripts/build-release.mts",
"build-package": "yarn build",
"build": "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 <code@benjiegillam.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/graphile/crystal/issues"
},
"homepage": "https://graphile.org/",
"dependencies": {
"@babel/generator": "^7.28.5",
"@babel/parser": "^7.28.5",
"@babel/template": "^7.27.2",
"@babel/traverse": "^7.28.5",
"@babel/types": "^7.28.5",
"@types/node": "^22.19.1",
"prettier": "^3.6.2",
"tslib": "^2.8.1"
},
"engines": {
"node": ">=22"
},
"peerDependencies": {
"eslint": "^8.48.0 || ^9.26.0",
"grafast": "workspace:^1.0.0-rc.8",
"pg-sql2": "workspace:^5.0.0-rc.4"
},
"peerDependenciesMeta": {
"eslint": {
"optional": true
},
"pg-sql2": {
"optional": true
}
},
"files": [
"dist"
],
"devDependencies": {
"@types/babel__generator": "^7.27.0",
"@types/babel__template": "^7.4.4",
"@types/jest": "^30.0.0",
"@types/prettier": "^3.0.0",
"jest": "^30.2.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"publishConfig": {
"directory": "release",
"access": "public"
}
}