-
-
Notifications
You must be signed in to change notification settings - Fork 617
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.64 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.64 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
{
"name": "graphile-config",
"version": "1.0.1",
"description": "Standard plugin interface and helpers to be used across the Graphile stack.",
"type": "commonjs",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./load": {
"types": "./dist/loadConfig.d.ts",
"default": "./dist/loadConfig.js"
},
"./cli": {
"types": "./dist/cli.d.ts",
"default": "./dist/cli.js"
}
},
"scripts": {
"prepack": "node ../../scripts/build-release.mts",
"build-package": "yarn build",
"test": "mocha '__tests__/**/*.test.ts'",
"build": "tsc -b"
},
"repository": {
"type": "git",
"url": "git+https://github.com/graphile/crystal.git"
},
"keywords": [
"graphile",
"plugin",
"graphite"
],
"author": "Benjie Gillam <code@benjiegillam.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/graphile/crystal/issues"
},
"homepage": "https://graphile.org/graphile-build/",
"dependencies": {
"chalk": "^4.1.2",
"debug": "^4.4.3",
"interpret": "^3.1.1",
"semver": "^7.7.3",
"tslib": "^2.8.1",
"yargs": "^17.7.2"
},
"engines": {
"node": ">=22"
},
"files": [
"dist"
],
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/interpret": "^1.1.4",
"@types/mocha": "^10.0.10",
"@types/node": "^22.19.1",
"@types/semver": "^7.7.1",
"chai": "^5.3.3",
"mocha": "^11.7.5",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"publishConfig": {
"directory": "release",
"access": "public"
}
}