-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
116 lines (116 loc) · 3.84 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
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
{
"name": "unison",
"displayName": "Unison Language",
"publisher": "unison-lang",
"description": "Official extension for unison language support",
"version": "1.1.0",
"icon": "images/unison.png",
"main": "./out/main.js",
"engines": {
"vscode": "^1.69.0"
},
"categories": [
"Programming Languages"
],
"keywords": [
"unison",
"unison-lang",
"vscode",
"lsp",
"extension"
],
"activationEvents": [
"onLanguage:unison"
],
"author": "Unison Computing",
"contributes": {
"languages": [
{
"id": "unison",
"aliases": [
"Unison",
"unison",
"unison-lang",
"multi-root ready"
],
"extensions": [
".u",
".uu"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "unison",
"scopeName": "source.u",
"path": "./syntaxes/unison.tmLanguage.json"
}
],
"configuration": {
"type": "object",
"title": "Unison",
"properties": {
"unison.lspPort": {
"scope": "resource",
"type": "number",
"default": 5757,
"description": "The port of a running UCM language server. You can override thise by setting the UNISON_LSP_PORT environment variable when running UCM."
},
"unison.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VSCode and the language server."
},
"unison.automaticallyOpenUCM": {
"scope": "window",
"type": "boolean",
"default": true,
"description": "Automatically open an embedded terminal and start UCM if no existing UCM session is detected."
},
"unison.ucmCommand": {
"scope": "window",
"type": "string",
"default": "ucm",
"description": "Which command to run when automatically opening ucm in a terminal."
}
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/unisonweb/vscode-extension.git"
},
"bugs": {
"url": "https://github.com/unisonweb/vscode-extension/issues"
},
"homepage": "https://github.com/unisonweb/vscode-extension#readme",
"scripts": {
"start": "npm run esbuild-watch",
"compile": "tsc -b",
"watch": "tsc -b -w",
"vscode:prepublish": "npm run esbuild-base -- --minify",
"vscode:package": "npm run vscode:prepublish && vsce package",
"publish": "npm run vscode:package && vsce publish",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=out/main.js --external:vscode --format=cjs --platform=node",
"esbuild": "npm run esbuild-base -- --sourcemap",
"esbuild-watch": "npm run esbuild-base -- --sourcemap --watch"
},
"dependencies": {
"vscode-languageclient": "^8.0.1"
},
"devDependencies": {
"@types/node": "^18.0.3",
"@types/vscode": "^1.69.0",
"esbuild": "^0.14.49",
"typescript": "^4.8.4",
"@vscode/vsce": "^2.15.0"
},
"license": "SEE LICENSE IN LICENSE"
}