-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.9 KB
/
package.json
File metadata and controls
78 lines (78 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
{
"name": "@launchql/cli",
"version": "4.19.3",
"author": "Constructive <developers@constructive.io>",
"description": "LaunchQL CLI",
"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"
},
"bin": {
"lql": "index.js",
"launchql": "index.js"
},
"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",
"dev": "ts-node ./src/index.ts",
"lint": "eslint . --fix",
"test": "jest",
"test:watch": "jest --watch"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/minimist": "^1.2.5",
"@types/node": "^20.12.7",
"@types/pg": "^8.16.0",
"@types/shelljs": "^0.8.16",
"clean-ansi": "0.1.3",
"glob": "^13.0.0",
"makage": "^0.1.8",
"pg": "^8.16.3",
"ts-node": "^10.9.2"
},
"dependencies": {
"@launchql/codegen": "workspace:^",
"@pgpmjs/core": "workspace:^",
"@pgpmjs/env": "workspace:^",
"@launchql/explorer": "workspace:^",
"@pgpmjs/logger": "workspace:^",
"@launchql/server": "workspace:^",
"@pgpmjs/server-utils": "workspace:^",
"@pgpmjs/types": "workspace:^",
"find-and-require-package-json": "^0.8.0",
"inquirerer": "^2.1.11",
"js-yaml": "^4.1.0",
"minimist": "^1.2.8",
"pg-cache": "workspace:^",
"pg-env": "workspace:^",
"pgpm": "workspace:^",
"shelljs": "^0.10.0",
"yanse": "^0.1.5"
},
"keywords": [
"cli",
"command-line",
"tool",
"launchql",
"utilities",
"pg",
"pgsql",
"postgres",
"graphile"
]
}