-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.86 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.86 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
{
"name": "@launchql/cli",
"version": "4.8.0",
"author": "Dan Lynch <pyramation@gmail.com>",
"description": "LaunchQL CLI",
"main": "index.js",
"module": "esm/index.js",
"types": "index.d.ts",
"homepage": "https://github.com/launchql/launchql",
"license": "SEE LICENSE IN LICENSE",
"publishConfig": {
"access": "public",
"directory": "dist"
},
"bin": {
"lql": "index.js",
"launchql": "index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/launchql/launchql"
},
"bugs": {
"url": "https://github.com/launchql/launchql/issues"
},
"scripts": {
"copy": "copyfiles -f ../../LICENSE README.md package.json dist",
"clean": "rimraf dist/**",
"prepare": "npm run build",
"build": "npm run clean; tsc; tsc -p tsconfig.esm.json; npm run copy",
"build:dev": "npm run clean; tsc --declarationMap; tsc -p tsconfig.esm.json; npm run copy",
"dev": "ts-node ./src/index.ts",
"lint": "eslint . --fix",
"test": "jest",
"test:watch": "jest --watch"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.12.7",
"@types/semver": "^7.7.0",
"@types/shelljs": "^0.8.16",
"ts-node": "^10.9.2"
},
"dependencies": {
"@launchql/core": "^2.8.0",
"@launchql/env": "^2.2.1",
"@launchql/explorer": "^2.3.1",
"@launchql/server": "^2.3.2",
"@launchql/server-utils": "^2.2.1",
"@launchql/templatizer": "^2.3.0",
"@launchql/types": "^2.3.0",
"chalk": "^4.1.0",
"inquirerer": "^2.0.8",
"js-yaml": "^4.1.0",
"minimist": "^1.2.8",
"pg-cache": "^1.1.1",
"pg-env": "^1.1.0",
"semver": "^7.7.2",
"shelljs": "^0.9.2"
},
"resolutions": {
"graphql": "15.5.2"
},
"keywords": [
"cli",
"command-line",
"tool",
"launchql",
"utilities",
"pg",
"pgsql",
"postgres",
"graphile"
]
}