-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.06 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.06 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
{
"name": "postgres-language-server-cli-action",
"version": "0.0.1",
"description": "Installs the Postgres Language Server CLI on your GitHub Actions runner.",
"main": "dist/index.js",
"scripts": {
"build": "ncc build --source-map --license license.txt src/index.ts -o dist",
"format": "prettier --write '**/*.ts'",
"format:check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts"
},
"engines": {
"node": ">=20.5 <23"
},
"keywords": ["actions", "node", "setup", "postgres", "sql", "lsp"],
"repository": {
"type": "git",
"url": "git+https://github.com/supabase-community/postgres-language-server-cli-action.git"
},
"author": "Supabase Community",
"contributors": [
{
"name": "Philipp Steinrötter",
"url": "https://github.com/psteinroe"
},
{
"name": "Julian Domke",
"url": "https://github.com/juleswritescode"
}
],
"license": "ISC",
"dependencies": {
"@actions/core": "1.11.1",
"@actions/tool-cache": "2.0.2",
"@vercel/ncc": "0.38.3"
},
"devDependencies": {
"@types/node": "22.13.5",
"typescript": "5.7.3"
}
}