-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.14 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.14 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": "google-cloud-sql",
"version": "3.0.1",
"description": "Connect to private Google Cloud SQL/AlloyDB instance through Cloud SQL/AlloyDB Auth Proxy running in GKE cluster.",
"type": "module",
"license": "UNLICENSED",
"author": "Dinko Osrecki <dinko.osrecki@emarsys.com>",
"homepage": "https://github.com/edosrecki/google-cloud-sql-cli",
"repository": {
"type": "git",
"url": "git+https://github.com/edosrecki/google-cloud-sql-cli.git"
},
"bugs": {
"url": "https://github.com/edosrecki/google-cloud-sql-cli/issues"
},
"bin": {
"google-cloud-sql": "dist/index.cjs"
},
"files": [
"dist"
],
"packageManager": "pnpm@10.28.0",
"engines": {
"node": "24.12.0",
"pnpm": "10.28.0"
},
"scripts": {
"clean": "rimraf dist bin",
"prebuild": "pnpm clean",
"build": "tsdown",
"bundle": "pkg dist/index.cjs --targets node24-linux,node24-macos,node24-win -o bin/google-cloud-sql",
"exec:dev": "tsx src/index.ts",
"exec:dist": "node dist/index.cjs",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "pnpm lint",
"typecheck": "tsc --noEmit",
"prepare": "husky",
"prettify-package-json": "prettier-package-json --write"
},
"dependencies": {
"boxen": "8.0.1",
"chalk": "5.6.2",
"commander": "14.0.3",
"conf": "15.1.0",
"exit-hook": "5.1.0",
"@inquirer/prompts": "^7.0.0",
"fuse.js": "7.1.0",
"lodash-es": "4.17.23",
"memoizee": "0.4.17",
"update-notifier": "7.3.1"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/exec": "7.1.0",
"@semantic-release/git": "10.0.1",
"@stylistic/eslint-plugin": "5.8.0",
"@tsconfig/node24": "24.0.4",
"@types/lodash-es": "4.17.12",
"@types/memoizee": "0.4.12",
"@types/node": "24.10.6",
"@types/update-notifier": "6.0.8",
"@yao-pkg/pkg": "6.14.0",
"eslint": "10.0.0",
"husky": "9.1.7",
"prettier-package-json": "2.8.0",
"rimraf": "6.1.3",
"semantic-release": "25.0.3",
"tsdown": "0.20.3",
"tsx": "4.21.0",
"typescript": "5.9.3",
"typescript-eslint": "8.56.0"
}
}