-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.37 KB
/
Copy pathpackage.json
File metadata and controls
126 lines (126 loc) · 3.37 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
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
117
118
119
120
121
122
123
124
125
126
{
"name": "neonctl",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/neondatabase/neonctl.git"
},
"type": "module",
"version": "2.26.6",
"description": "CLI tool for NeonDB Cloud management",
"main": "index.js",
"author": "NeonDB",
"license": "Apache-2.0",
"private": false,
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@9.15.9",
"bin": {
"neonctl": "cli.js",
"neon": "cli.js"
},
"devDependencies": {
"@apidevtools/swagger-parser": "12.1.0",
"@commitlint/cli": "17.8.1",
"@commitlint/config-conventional": "17.8.1",
"@eslint/js": "9.29.0",
"@rollup/plugin-commonjs": "25.0.8",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "15.2.3",
"@testcontainers/postgresql": "^11.14.0",
"@types/cli-table": "0.3.4",
"@types/diff": "5.2.1",
"@types/eslint__js": "8.42.3",
"@types/express": "4.17.21",
"@types/node": "18.19.41",
"@types/prompts": "2.4.9",
"@types/which": "3.0.4",
"@types/yargs": "17.0.32",
"@yao-pkg/pkg": "6.10.0",
"emocks": "3.0.4",
"esbuild": "0.28.0",
"eslint": "9.29.0",
"express": "4.19.2",
"husky": "8.0.3",
"lint-staged": "13.3.0",
"node-pty": "1.1.0",
"oauth2-mock-server": "8.1.0",
"prettier": "3.3.3",
"rollup": "3.29.4",
"strip-ansi": "7.1.0",
"tsx": "4.22.3",
"typescript": "5.8.3",
"typescript-eslint": "8.28.0",
"vitest": "1.6.1"
},
"optionalDependencies": {
"esbuild": "0.28.0"
},
"dependencies": {
"@hono/node-server": "2.0.4",
"@neondatabase/api-client": "2.7.1",
"@neondatabase/config": "0.8.0",
"@neondatabase/config-runtime": "0.8.0",
"@neondatabase/env": "0.6.0",
"@segment/analytics-node": "1.3.0",
"axios": "1.7.2",
"axios-debug-log": "1.0.0",
"chalk": "5.3.0",
"chokidar": "5.0.0",
"cli-table": "0.3.11",
"cliui": "8.0.1",
"diff": "5.2.0",
"fflate": "^0.8.3",
"neon-init": "0.17.2",
"open": "10.1.0",
"openid-client": "6.8.1",
"pg-protocol": "^1.14.0",
"prompts": "2.4.2",
"which": "3.0.1",
"yaml": "2.4.5",
"yargs": "17.7.2"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"pkg": {
"assets": [
"callback.html",
"package.json"
],
"scripts": [
"bundle/*.js"
],
"targets": [
"node22-linux-x64",
"node22-macos-x64",
"node22-win-x64",
"node22-linux-arm64"
]
},
"scripts": {
"watch": "tsc --watch",
"typecheck": "tsc --noEmit",
"lint": "pnpm typecheck && eslint src && prettier --check .",
"lint:fix": "pnpm typecheck && eslint src --fix && prettier --w .",
"build": "pnpm generateParams && pnpm clean && tsc -p tsconfig.build.json && cp src/*.html package*.json README.md ./dist",
"clean": "rm -rf dist",
"generateParams": "tsx generateOptionsFromSpec.ts",
"start": "node dist/index.js",
"pretest": "pnpm build",
"test": "vitest run",
"test:conformance": "vitest run --config tests/psql-conformance/vitest.config.ts",
"test:conformance:matrix": "tsx tests/psql-conformance/scripts/run-local-matrix.ts",
"prepare": "test -d .git && husky install || true"
},
"lint-staged": {
".{cjs,js,json,md,html}": [
"prettier --write"
],
"*.ts": [
"eslint --cache --fix",
"prettier --write"
]
}
}