-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
98 lines (98 loc) · 2.49 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
{
"name": "futhark-vscode",
"displayName": "Futhark",
"description": "Futhark language support powered by the Futhark Language Server",
"version": "0.1.3",
"publisher": "DIKU",
"repository": "github:diku-dk/futhark-vscode",
"engines": {
"vscode": "^1.64.0"
},
"keywords": [
"language",
"futhark",
"lsp"
],
"categories": [
"Programming Languages",
"Other"
],
"icon": "assets/logo.png",
"galleryBanner": {
"color": "#53001D",
"theme": "dark"
},
"license": "SEE LICENSE IN LICENSE",
"activationEvents": [
"onLanguage:futhark"
],
"main": "./out/main",
"contributes": {
"languages": [
{
"id": "futhark",
"extensions": [
".fut"
],
"aliases": [
"Futhark",
"futhark"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "futhark",
"scopeName": "source.futhark",
"path": "./futhark.tmLanguage.json"
}
],
"configuration": {
"type": "object",
"title": "Futhark",
"properties": {
"futhark.futharkExecutablePath": {
"scope": "resource",
"type": "string",
"default": "",
"markdownDescription": "Path to a Futhark executable. Supports `~` and `${HOME}`. Reload window after modifying."
},
"futhark.useWSL": {
"scope": "resource",
"type": "boolean",
"default": "false",
"markdownDescription": "When using Windows, run Futhark within Windows Subsystem for Linux (WSL)."
}
}
},
"commands": [
{
"command": "futhark.commands.restartServer",
"title": "Restart Futhark Language Server",
"category": "Futhark"
}
]
},
"scripts": {
"vscode:prepublish": "rm -rf ./out && npm run esbuild -- --minify",
"esbuild": "esbuild ./src/extension.ts --bundle --outfile=out/main.js --external:vscode --format=cjs --platform=node",
"esbuild:dev": "npm run esbuild -- --sourcemap"
},
"devDependencies": {
"@types/node": "^17.0.14",
"@types/vscode": "^1.63.2",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"esbuild": "^0.14.27",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.5.1",
"typescript": "^4.5.5"
},
"dependencies": {
"@types/semver": "^7.3.9",
"vscode-languageclient": "^7.0.0",
"which": "^2.0.2"
}
}