-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.88 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
{
"name": "ifm",
"version": "1.2.3",
"publisher": "claui",
"engines": {
"vscode": "^1.75.0"
},
"license": "SEE LICENSE IN README.md",
"displayName": "IFM – Interactive Fiction Mapping",
"description": "Support for the Interactive Fiction Mapping language",
"categories": [],
"keywords": [],
"preview": true,
"main": "build/extension.js",
"contributes": {
"commands": [
{
"command": "ifm.action.refresh",
"title": "IFM: Refresh connection"
},
{
"command": "ifm.action.showLog",
"title": "IFM: Show extension log"
}
],
"configuration": {
"title": "IFM – Interactive Fiction Mapping",
"properties": {
"ifm.executablePath": {
"type": "string",
"markdownDescription": "Path to the `ifm` executable, e. g. `/usr/local/bin/ifm`. \nLeave blank if it’s already on your `PATH`.",
"scope": "machine-overridable"
},
"ifm.runtimeLimitInMilliseconds": {
"type": "integer",
"markdownDescription": "Maximum number of milliseconds the `ifm` process is allowed to run.",
"default": 500,
"scope": "machine-overridable"
}
}
},
"configurationDefaults": {
"[ifm]": {
"editor.autoIndent": "keep",
"editor.wrappingIndent": "indent",
"editor.tabSize": 2
}
},
"grammars": [
{
"language": "ifm",
"scopeName": "source.ifm",
"path": "share/ifm.tmLanguage.json"
}
],
"languages": [
{
"id": "ifm",
"aliases": [
"IFM",
"IFM language"
],
"filenamePatterns": [
"*.ifm"
],
"configuration": "share/language-configuration.json"
}
]
},
"extensionKind": [
"workspace"
],
"activationEvents": [],
"repository": "github:claui/vscode-ifm"
}