-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.34 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.34 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
{
"name": "node-type-registry",
"version": "0.15.0",
"description": "Node type definitions for the Constructive blueprint system. Single source of truth for all Authz*, Data*, Relation*, and View* node types.",
"author": "Constructive <developers@constructive.io>",
"main": "index.js",
"module": "esm/index.js",
"types": "index.d.ts",
"homepage": "https://github.com/constructive-io/constructive",
"license": "MIT",
"publishConfig": {
"access": "public",
"directory": "dist"
},
"repository": {
"type": "git",
"url": "https://github.com/constructive-io/constructive"
},
"bugs": {
"url": "https://github.com/constructive-io/constructive/issues"
},
"scripts": {
"clean": "makage clean",
"prepack": "npm run build",
"build": "makage build",
"build:dev": "makage build --dev",
"lint": "eslint . --fix",
"test": "jest",
"test:watch": "jest --watch",
"generate:types": "ts-node src/codegen/generate-types.ts"
},
"dependencies": {
"@babel/generator": "^7.29.0",
"@babel/types": "^7.29.0",
"@pgsql/types": "^17.6.2",
"@pgsql/utils": "^17.8.15",
"pgsql-deparser": "^17.18.2",
"schema-typescript": "^0.14.3"
},
"devDependencies": {
"makage": "^0.3.0"
},
"keywords": [
"constructive",
"blueprint",
"node-type",
"registry",
"graphile"
]
}