-
Notifications
You must be signed in to change notification settings - Fork 734
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.59 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.59 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
{
"name": "@github/copilot-language-server",
"displayName": "GitHub Copilot Language Server",
"description": "Your AI pair programmer",
"homepage": "https://github.com/github/copilot-language-server-release",
"bugs": {
"url": "https://github.com/github/copilot-language-server-release/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/github/copilot-language-server-release.git"
},
"license": "MIT",
"version": "1.408.0",
"bin": {
"copilot-language-server": "../dist/language-server.js"
},
"files": [
"dist/language-server.js*",
"dist/main.js*",
"dist/diffWorker.js*",
"dist/tfidfWorker.js*",
"dist/tree-sitter*.wasm",
"dist/compiled/*/*/*.node",
"dist/bin/**/*",
"dist/resources",
"dist/crypt32*.node",
"dist/api/types.d.ts",
"dist/policy-templates/**/*",
"dist/*.tiktoken",
"dist/assets/agents/*.agent.md",
"dist/assets/prompts.contributions.json"
],
"main": "./dist/main.js",
"types": "./dist/api/types.d.ts",
"dependencies": {
"vscode-languageserver-protocol": "^3.17.5"
},
"optionalDependencies": {
"@github/copilot-language-server-win32-x64": "1.408.0",
"@github/copilot-language-server-linux-x64": "1.408.0",
"@github/copilot-language-server-linux-arm64": "1.408.0",
"@github/copilot-language-server-darwin-x64": "1.408.0",
"@github/copilot-language-server-darwin-arm64": "1.408.0"
},
"buildType": "prod",
"build": "15"
}