-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.04 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
{
"name": "@j-shilling/cody-lsp-gateway",
"displayName": "Cody LSP Gateway",
"description": "An LSP Compatible Interface to Cody",
"version": "0.0.1",
"license": "Apache-2.0",
"main": "dist/app.js",
"repository": {
"type": "git",
"url": "https://github.com/j-shilling/cody-lsp-gateway.git"
},
"bin": {
"cody-lsp-gateway": "./dist/app.js"
},
"scripts": {
"start": "ts-node-transpile-only ./src/app.ts -- --stdio",
"lint": "pnpm run lint:js",
"lint:js": "eslint --cache '**/*.[tj]s?(x)'",
"prebuild": "tsc --emitDeclarationOnly",
"build": "esbuild ./src/app.ts --bundle --outfile=dist/app.js --target=es2020 --format=cjs --platform=node"
},
"publishConfig": {
"@j-shilling:registry": "https://npm.pkg.github.com/j-shilling"
},
"dependencies": {
"vscode-languageserver": "^8.1.0",
"vscode-languageserver-textdocument": "^1.0.8"
},
"devDependencies": {
"@sourcegraph/eslint-config": "^0.33.0",
"@sourcegraph/tsconfig": "^4.0.1",
"esbuild": "^0.18.4",
"eslint": "^8.43.0"
}
}