-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
163 lines (163 loc) · 3.89 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
{
"name": "flix",
"description": "Flix Language Server Extension",
"author": "Flix",
"license": "Apache-2.0",
"version": "1.35.0",
"repository": {
"type": "git",
"url": "https://github.com/flix/vscode-flix"
},
"publisher": "flix",
"categories": [],
"icon": "icon.png",
"keywords": [
"flix"
],
"engines": {
"vscode": "^1.82.0"
},
"activationEvents": [
"onLanguage:flix"
],
"main": "./client/out/extension.js",
"contributes": {
"commands": [
{
"command": "flix.internalRestart",
"title": "Flix: Restart Compiler"
},
{
"command": "flix.internalDownloadLatest",
"title": "Flix: Download Latest Version"
},
{
"command": "flix.cmdInit",
"title": "Flix: init"
},
{
"command": "flix.cmdCheck",
"title": "Flix: check"
},
{
"command": "flix.cmdBuild",
"title": "Flix: build"
},
{
"command": "flix.cmdBuildJar",
"title": "Flix: build-jar"
},
{
"command": "flix.cmdBuildFatjar",
"title": "Flix: build-fatjar"
},
{
"command": "flix.cmdBuildPkg",
"title": "Flix: build-pkg"
},
{
"command": "flix.cmdRunProject",
"title": "Flix: run"
},
{
"command": "flix.cmdTests",
"title": "Flix: test"
},
{
"command": "flix.cmdDoc",
"title": "Flix: doc"
},
{
"command": "flix.cmdOutdated",
"title": "Flix: outdated"
},
{
"command": "flix.showAst",
"title": "Flix: Show AST"
},
{
"command": "flix.startRepl",
"title": "Flix: Start REPL"
},
{
"command": "flix.allJobsFinished",
"title": "Flix (debugging): Wait for the compiler to finish processing",
"enablement": "false"
}
],
"languages": [
{
"id": "flix",
"extensions": [
".flix"
],
"aliases": [
"Flix"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "flix",
"scopeName": "source.flix",
"path": "./syntaxes/flix.tmLanguage.json"
}
],
"configuration": {
"type": "object",
"title": "Flix",
"properties": {
"flix.explain.enabled": {
"type": "boolean",
"default": false,
"description": "Enable detailed compiler error messages",
"order": 1
},
"flix.clearOutput.enabled": {
"type": "boolean",
"default": true,
"description": "Continuously clear the output window when changes are made",
"order": 2
},
"flix.extraJvmArgs": {
"type": "string",
"default": "",
"description": "Additional JVM arguments separated by spaces",
"order": 3
},
"flix.extraFlixArgs": {
"type": "string",
"default": "",
"description": "Additional Flix compiler options separated by spaces",
"order": 4
}
}
},
"configurationDefaults": {
"[flix]": {
"editor.tabSize": 4,
"editor.semanticHighlighting.enabled": true
}
}
},
"scripts": {
"vscode:prepublish": "npm run build",
"build": "node build.js",
"watch": "tsc -b -w",
"postinstall": "cd client && npm install && cd ../server && npm install && cd ..",
"test": "npm run build && tsc --build ./test && vscode-test"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^20.16.1",
"@types/vscode": "^1.43.0",
"@typescript-eslint/eslint-plugin": "^8.2.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.3.9",
"esbuild": "^0.23.1",
"eslint": "^8.57.0",
"prettier": "^3.3.3",
"typescript": "^5.0.4"
}
}