-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.27 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.27 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
{
"name": "cloudsqlctl",
"version": "0.5.3",
"description": "Windows-native CLI tool that installs, updates, and manages Google Cloud SQL Auth Proxy via gcloud CLI.",
"main": "dist/cli.cjs",
"type": "module",
"bin": {
"cloudsqlctl": "./dist/cli.cjs"
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build": "tsup",
"package": "npm run build && powershell -ExecutionPolicy Bypass -File tools/build-sea.ps1",
"smoke:exe": "powershell -NoProfile -Command \"./bin/cloudsqlctl.exe --version; ./bin/cloudsqlctl.exe paths\"",
"installer": "powershell -ExecutionPolicy Bypass -File tools/build-installer.ps1",
"stage": "powershell -ExecutionPolicy Bypass -File tools/stage-artifacts.ps1",
"setup:clean": "npm install && npm ci && npm run package && npm run installer && npm run stage",
"docs:generate": "node tools/generate-docs.mjs",
"docs:check": "npm run docs:generate && git diff --exit-code docs/commands.md",
"lint": "eslint src",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --passWithNoTests",
"prepare": "husky install",
"git:release": "git add . && git commit -m \"chore: new release with minimal changes\" && powershell -ExecutionPolicy Bypass -File tools/release.ps1 -Version minimal"
},
"keywords": [
"windows",
"cli",
"gcloud",
"cloud-sql",
"devops",
"typescript",
"automation"
],
"author": "",
"license": "MIT",
"dependencies": {
"axios": "1.13.6",
"chalk": "5.6.2",
"commander": "14.0.3",
"conf": "15.1.0",
"execa": "9.6.1",
"extract-zip": "2.0.1",
"fs-extra": "11.3.3",
"inquirer": "13.3.0",
"semver": "7.7.4",
"winston": "3.19.0"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@types/fs-extra": "11.0.4",
"@types/inquirer": "9.0.9",
"@types/jest": "30.0.0",
"@types/node": "25.3.3",
"@types/semver": "7.7.1",
"eslint": "10.0.2",
"globals": "17.4.0",
"husky": "9.1.7",
"jest": "30.2.0",
"postject": "1.0.0-alpha.6",
"prettier": "3.8.1",
"rcedit": "5.0.2",
"ts-jest": "29.4.6",
"ts-node": "10.9.2",
"tsup": "8.5.1",
"typescript": "5.9.3",
"typescript-eslint": "8.56.1"
}
}