forked from alefragnani/vscode-language-pascal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
137 lines (137 loc) · 4.06 KB
/
package.json
File metadata and controls
137 lines (137 loc) · 4.06 KB
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
{
"name": "pascal",
"displayName": "Language Pascal",
"description": "Pascal support for Visual Studio Code",
"version": "0.7.0",
"publisher": "alefragnani",
"galleryBanner": {
"color": "#4682B4",
"theme": "dark"
},
"engines": {
"vscode": "0.10.x"
},
"categories": [
"Languages",
"Snippets",
"Formatters",
"Other"
],
"keywords": [
"pascal",
"delphi",
"freepascal",
"lazarus",
"formatter"
],
"activationEvents": [
"onLanguage:pascal",
"onCommand:pascal.editFormatterParameters"
],
"main": "./out/src/extension",
"icon": "images/icon.png",
"license": "SEE LICENSE IN LICENSE.md",
"homepage": "https://github.com/alefragnani/vscode-language-pascal/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/alefragnani/vscode-language-pascal.git"
},
"bugs": {
"url": "https://github.com/alefragnani/vscode-language-pascal/issues"
},
"contributes": {
"languages": [
{
"id": "pascal",
"aliases": [
"Pascal",
"pascal"
],
"extensions": [
".pas",
".p",
".dfm",
".dpr",
".dpk",
".lfm",
".dpr"
],
"configuration": "./pascal.configuration.json"
}
],
"grammars": [
{
"language": "pascal",
"scopeName": "source.pascal",
"path": "./syntaxes/pascal.tmLanguage"
}
],
"snippets": [
{
"language": "pascal",
"path": "./snippets/pascal.json"
}
],
"commands": [
{
"command": "pascal.editFormatterParameters",
"title": "Pascal: Edit Formatter Parameters"
},
{
"command": "pascal.generateTags",
"title": "Pascal: Generate Tags"
},
{
"command": "pascal.updateTags",
"title": "Pascal: Update Tags"
}
],
"configuration": {
"type": "object",
"title": "Pascal Formatter Configuration",
"properties": {
"pascal.formatter.engine": {
"type": "string",
"default": "",
"description": "Choose the Formatter engine to be used",
"enum": [
"jcf",
"ptop"
]
},
"pascal.formatter.enginePath": {
"type": "string",
"default": "",
"description": "Indicates the Formatter app path"
},
"pascal.formatter.engineParameters": {
"type": "string",
"default": "",
"description": "Indicates the configuration file for the selected engine"
},
"pascal.format.indent": {
"type": "number",
"default": 2,
"description": "The number of spaces used for indentation"
},
"pascal.format.wrapLineLength": {
"type": "number",
"default": 80,
"description": "Maximum amount of characters per line"
}
}
}
},
"scripts": {
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"dependencies": {
"opener": "~1.4.1"
},
"devDependencies": {
"typescript": "^1.6.2",
"vscode": "^0.11.x"
}
}