-
Notifications
You must be signed in to change notification settings - Fork 115
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.24 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.24 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
{
"name": "@postgres-language-server/backend-jsonrpc",
"version": "<placeholder>",
"description": "Bindings to the JSON-RPC Workspace API of the Postgres Language Tools daemon",
"keywords": [
"Postgres",
"TypeScript"
],
"bugs": "ttps://github.com/supabase-community/postgres-language-server/issues",
"license": "MIT",
"author": "Supabase Community",
"repository": {
"type": "git",
"url": "git+https://github.com/supabase-community/postgres-language-server.git",
"directory": "packages/@postgres-language-server/backend-jsonrpc"
},
"files": [
"dist/",
"README.md"
],
"main": "dist/index.js",
"publishConfig": {
"provenance": true
},
"scripts": {
"test": "bun test",
"test:ci": "bun build && bun test",
"build": "bun build ./src/index.ts --outdir ./dist --target node"
},
"optionalDependencies": {
"@postgres-language-server/cli-darwin-arm64": "<placeholder>",
"@postgres-language-server/cli-darwin-x64": "<placeholder>",
"@postgres-language-server/cli-linux-arm64": "<placeholder>",
"@postgres-language-server/cli-linux-x64": "<placeholder>",
"@postgres-language-server/cli-win32-arm64": "<placeholder>",
"@postgres-language-server/cli-win32-x64": "<placeholder>"
}
}