-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.54 KB
/
package.json
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
{
"name": "@cloudquery/setup-cloudquery",
"version": "4.1.3",
"description": "Setup CloudQuery CLI in a GitHub action environment",
"main": "dist/index.js",
"type": "module",
"scripts": {
"prepare": "npm run build",
"build": "ncc build src/main.ts -o dist",
"format": "prettier --write src/**/*.ts",
"format:ci": "prettier --check src/**/*.ts",
"lint": "eslint 'src/**/*.ts' --max-warnings=0",
"start": "ts-node --esm src/main.ts"
},
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/cloudquery/setup-cloudquery.git"
},
"author": "CloudQuery",
"license": "MIT",
"bugs": {
"url": "https://github.com/cloudquery/setup-cloudquery/issues"
},
"homepage": "https://github.com/cloudquery/setup-cloudquery#readme",
"dependencies": {
"@actions/core": "1.11.1",
"chalk": "5.4.1",
"execa": "8.0.1",
"node-fetch": "^3.3.2",
"ora": "8.1.1",
"p-wait-for": "^5.0.2",
"semver": "7.6.3"
},
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@types/node": "22.10.10",
"@types/pg": "8.11.11",
"@types/semver": "7.5.8",
"@typescript-eslint/eslint-plugin": "8.21.0",
"@typescript-eslint/parser": "8.21.0",
"@vercel/ncc": "0.38.3",
"eslint": "9.19.0",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-n": "17.15.1",
"eslint-plugin-prettier": "5.2.3",
"husky": "^9.0.11",
"prettier": "3.4.2",
"typescript": "5.7.3"
}
}