This repository has been archived by the owner on Nov 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
90 lines (90 loc) · 1.98 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
{
"name": "vsfstar",
"description": "F* LSP client",
"author": {
"name": "Ramkumar Ramachandra",
"email": "[email protected]",
"url": "https://artagnon.com"
},
"publisher": "artagnon",
"repository": {
"type": "git",
"url": "https://github.com/artagnon/vsfstar"
},
"license": "MIT",
"version": "0.0.7",
"engines": {
"vscode": "^1.41.0"
},
"icon": "assets/vsfstar.png",
"categories": [
"Programming Languages",
"Linters",
"Snippets"
],
"keywords": [
"FStar",
"IDE",
"Language Server Protocol"
],
"activationEvents": [
"onLanguage:fstar",
"onLanguage:fsharp",
"onCommand:vsfstar.activate"
],
"main": "out/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "F* configuration",
"properties": {
"vsfstar.path": {
"type": "string",
"default": "fstar.exe",
"description": "The path to F* executable"
}
}
},
"languages": [
{
"id": "fstar",
"extensions": [
".fs7",
".fst",
".fsti"
],
"configuration": "fstar.configuration.json"
}
],
"grammars": [
{
"language": "fstar",
"scopeName": "source.fstar",
"path": "./syntax/fstar.tmGrammar.json"
}
],
"commands": [
{
"command": "vsfstar.activate",
"title": "Manually activate F* extension"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "npx js-yaml syntax/fstar.tmGrammar.yaml >syntax/fstar.tmGrammar.json && tsc -b",
"watch": "tsc -b -w",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"dependencies": {
"vscode-languageclient": "^6.1.3"
},
"devDependencies": {
"@types/mocha": "^7.0.2",
"@types/node": "^13.9.2",
"tslint": "^6.1.0",
"typescript": "^3.8.3",
"vscode": "^1.1.36"
}
}