-
-
Notifications
You must be signed in to change notification settings - Fork 613
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.25 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.25 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
{
"name": "pg-introspection",
"version": "1.0.0-rc.5",
"description": "Strongly typed PostgreSQL introspection library",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepack": "node ../../scripts/build-release.mts",
"build-package": "yarn build",
"test": "node --experimental-strip-types --test",
"build": "tsc -b"
},
"repository": {
"type": "git",
"url": "git+https://github.com/graphile/crystal.git"
},
"keywords": [
"pg",
"postgres",
"postgresql",
"introspection",
"pg_class",
"pg_constraint",
"pg_attribute",
"pg_proc",
"graphile",
"graphite"
],
"author": "Benjie Gillam <benjie@jemjie.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/graphile/crystal/issues"
},
"homepage": "https://github.com/graphile/crystal/tree/main/utils/pg-introspection",
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/jest": "^30.0.0",
"@types/node": "^22.19.1",
"jest": "^30.2.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"dependencies": {
"tslib": "^2.8.1"
},
"files": [
"dist"
],
"engines": {
"node": ">=22"
},
"publishConfig": {
"directory": "release",
"access": "public"
}
}