-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.38 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 2.38 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
{
"name": "vscode-openedge-abl",
"displayName": "OpenEdge ABL",
"description": "OpenEdge ABL",
"author": "Kamil Jakubus",
"license": "MIT",
"version": "0.0.2",
"repository": {
"type": "git",
"url": "https://github.com/usagi-coffee/vscode-openedge-abl"
},
"publisher": "usagi-coffee",
"icon": "extra/icon.png",
"categories": [],
"keywords": [
"multi-root ready"
],
"engines": {
"vscode": "^1.100.0"
},
"activationEvents": [
"onLanguage:abl",
"onLanguage:df",
"onLanguage:openedgeabl",
"onStartupFinished"
],
"main": "./client/out/extension",
"contributes": {
"languages": [
{
"id": "abl",
"aliases": [
"OpenEdge ABL",
"abl",
"Progress",
"Progress 4GL"
],
"extensions": [
".w",
".p",
".i",
".cls"
],
"configuration": "./language-configuration.json"
},
{
"id": "df",
"aliases": [
"OpenEdge DF",
"df"
],
"extensions": [
".df"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "abl",
"scopeName": "source.abl",
"path": "./node_modules/abl-tmlanguage/abl.tmLanguage.json"
},
{
"language": "df",
"scopeName": "source.df",
"path": "./syntaxes/df.tmLanguage.json"
}
],
"configuration": {
"type": "object",
"title": "OpenEdge ABL",
"properties": {
"openedgeAbl.languageServerPath": {
"scope": "machine",
"type": "string",
"default": "",
"description": "Optional absolute or ~/ path to abl-language-server. When set, the extension skips GitHub release download and runs this binary."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -b",
"watch": "tsc -b -w",
"lint": "eslint",
"package": "bunx @vscode/vsce package",
"postinstall": "cd client && npm install && cd ..",
"test": "npm run compile"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@stylistic/eslint-plugin": "^2.9.0",
"@types/node": "^22",
"eslint": "^9.13.0",
"typescript": "^5.9.2",
"typescript-eslint": "^8.39.0"
},
"dependencies": {
"abl-tmlanguage": "^1.3.22"
}
}