forked from neondatabase/neonctl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.19 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "neonctl",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/neondatabase/neonctl.git"
},
"type": "module",
"version": "2.2.0",
"description": "CLI tool for NeonDB Cloud management",
"main": "index.js",
"author": "NeonDB",
"license": "MIT",
"private": false,
"engines": {
"node": ">=18"
},
"bin": {
"neonctl": "cli.js",
"neon": "cli.js"
},
"devDependencies": {
"@apidevtools/swagger-parser": "^10.1.0",
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@eslint/js": "^9.6.0",
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/bun": "^1.1.4",
"@types/cli-table": "^0.3.0",
"@types/diff": "^5.2.1",
"@types/eslint__js": "^8.42.3",
"@types/express": "^4.17.17",
"@types/node": "^18.7.13",
"@types/prompts": "2.4.9",
"@types/validate-npm-package-name": "4.0.2",
"@types/which": "^3.0.0",
"@types/yargs": "^17.0.24",
"emocks": "^3.0.1",
"eslint": "^9.6.0",
"express": "^4.18.2",
"husky": "^8.0.3",
"lint-staged": "^13.0.3",
"oauth2-mock-server": "^6.0.0",
"pkg": "^5.8.1",
"prettier": "^3.1.0",
"rollup": "^3.26.2",
"semantic-release": "^23.0.8",
"strip-ansi": "^7.1.0",
"typescript": "^4.7.4",
"typescript-eslint": "v8.0.0-alpha.41",
"vitest": "^1.6.0"
},
"dependencies": {
"@neondatabase/api-client": "^1.10.0",
"@segment/analytics-node": "^1.0.0-beta.26",
"axios": "^1.4.0",
"axios-debug-log": "^1.0.0",
"chalk": "^5.2.0",
"cli-table": "^0.3.11",
"crypto-random-string": "^5.0.0",
"diff": "^5.2.0",
"inquirer": "^9.2.6",
"open": "^10.1.0",
"openid-client": "^5.6.5",
"prompts": "2.4.2",
"validate-npm-package-name": "5.0.1",
"which": "^3.0.1",
"yaml": "^2.1.1",
"yargs": "^17.7.2"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"pkg": {
"assets": [
"callback.html",
"package.json"
],
"scripts": [
"bundle/*.js"
],
"targets": [
"node18-linux-x64",
"node18-macos-x64",
"node18-win-x64",
"node18-linux-arm64"
]
},
"scripts": {
"watch": "tsc --watch",
"typecheck": "tsc --noEmit",
"lint": "npm run typecheck && eslint src && prettier --check .",
"lint:fix": "npm run typecheck && eslint src --fix && prettier --w .",
"build": "bun generateParams && bun clean && tsc && cp src/*.html package*.json README.md ./dist",
"clean": "rm -rf dist",
"generateParams": "bun generateOptionsFromSpec.ts",
"start": "bun dist/index.js",
"pretest": "bun run build",
"test": "vitest run",
"prepare": "test -d .git && husky install || true"
},
"lint-staged": {
".{cjs,js,json,md,html}": [
"prettier --write"
],
"*.ts": [
"eslint --cache --fix",
"prettier --write"
]
},
"packageManager": "pnpm@9.4.0+sha512.f549b8a52c9d2b8536762f99c0722205efc5af913e77835dbccc3b0b0b2ca9e7dc8022b78062c17291c48e88749c70ce88eb5a74f1fa8c4bf5e18bb46c8bd83a"
}