forked from miks1965/pascalabcnet-vs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 3.33 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
{
"name": "pascalabcnet",
"description": "PascalABC.NET language extension",
"author": "Oxana Kostikova",
"license": "MIT",
"version": "1.1.5",
"icon": "images/logo.png",
"publisher": "lereenadem",
"repository": {
"type": "git",
"url": "https://github.com/Lereena/pascalabcnet-vs"
},
"engines": {
"vscode": "^1.62.0"
},
"files.associations": {
"*.pas": "pascalabcnet"
},
"activationEvents": [
"onLanguage:pascalabcnet"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "extension.pabcnet.compileAndRunCurrentTab",
"title": "PascalABC.NET: Compile and execute current tab",
"icon": "$(play)"
},
{
"command": "extension.pabcnet.compileCurrentTab",
"title": "PascalABC.NET: Compile current tab",
"icon": "$(gather)"
}
],
"menus": {
"editor/title": [
{
"command": "extension.pabcnet.compileAndRunCurrentTab",
"when": "resourceLangId == pascalabcnet",
"group": "navigation"
},
{
"command": "extension.pabcnet.compileCurrentTab",
"when": "resourceLangId == pascalabcnet",
"group": "navigation"
}
]
},
"configuration": {
"title": "PascalABC.NET",
"properties": {
"PascalABC.NET.Путь к консольному компилятору": {
"title": "Путь",
"type": "string",
"markdownDescription": "Для Windows указать путь к консольному компилятору.\n\nДля Linux и MacOS указать команду для запуска компилятора (необходима свежая версия mono). [Справка по установке](http://pascalabc.net/wiki/index.php?title=%D0%9A%D0%B0%D0%BA_%D0%B8%D0%BD%D1%81%D1%82%D0%B0%D0%BB%D0%BB%D0%B8%D1%80%D0%BE%D0%B2%D0%B0%D1%82%D1%8C_PascalABC.NET_%D0%BF%D0%BE%D0%B4_Linux)",
"description": ""
}
}
},
"configurationDefaults": {
"[pascalabcnet]": {
"editor.formatOnSave": false
}
},
"languages": [
{
"id": "pascalabcnet",
"aliases": [
"PascalABC.NET"
],
"extensions": [
".pas"
]
}
],
"snippets": [{
"language": "pascalabcnet",
"path": "./snippets/snippets.json"
}]
},
"dependencies": {
"pascalabcnet-lsp": "^1.0.3",
"vscode-languageclient": "^7.0.0"
},
"devDependencies": {
"@types/mocha": "^8.0.3",
"@types/node": "^12.12.2",
"@types/vscode": "^1.62.0",
"typescript": "^4.0.2",
"vscode-test": "^1.3.0"
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -b && cd node_modules/pascalabcnet-lsp && npm run compile",
"watch": "tsc -b -w",
"test": "sh ./scripts/e2e.sh"
}
}