forked from serkonda7/vscode-vba
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.25 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
{
"name": "vscode-vba",
"displayName": "VBA",
"description": "Visual Basic for Applications and WinWrap Basic support for VS Code.",
"icon": "images/icon_256x256.png",
"version": "0.9.0-dev",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/serkonda7/vscode-vba"
},
"publisher": "serkonda7",
"engines": {
"node": "16 || >=18",
"vscode": "^1.74.0"
},
"categories": [
"Programming Languages",
"Language Packs"
],
"keywords": [
"VBA",
"WWB"
],
"activationEvents": [],
"main": "./out/extension.js",
"capabilities": {
"untrustedWorkspaces": {
"supported": true
}
},
"contributes": {
"languages": [
{
"id": "vba",
"aliases": [
"VBA"
],
"extensions": [
".bas",
".cls",
".frm"
],
"configuration": "./out/language-configuration.json"
},
{
"id": "wwb",
"aliases": [
"WinWrap Basic"
],
"extensions": [
".wwd"
]
}
],
"grammars": [
{
"language": "vba",
"scopeName": "source.vba",
"path": "./out/vba.tmGrammar.json"
},
{
"language": "wwb",
"scopeName": "source.wwb",
"path": "./out/wwb.tmGrammar.json"
}
]
},
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc --watch -p ./",
"lint": "eslint .",
"test": "npm run test-vba && npm run test-wwb",
"test-vba": "vscode-tmgrammar-test -g ./out/vba.tmGrammar.json \"syntaxes/tests/vba/*.bas\"",
"test-wwb": "vscode-tmgrammar-test -g ./out/wwb.tmGrammar.json \"syntaxes/tests/other/*.wwd\"",
"install-dev-ext": "vsce package -o ./out/vscode-vba-dev.vsix && code --install-extension ./out/vscode-vba-dev.vsix --force",
"package": "vsce package",
"convert-yaml": "yaml2json language-configuration.yml \"syntaxes/*.yml\"",
"pretest": "npm run convert-yaml",
"postinstall-dev-ext": "echo 'Please reload the window (run `>reload window` from command palette)'",
"vscode:prepublish": "npm run compile && npm run convert-yaml"
},
"devDependencies": {
"@serkonda7/yaml2json": "^0.8.0",
"@types/node": "^16.18.6",
"@types/vscode": "~1.74.0",
"@typescript-eslint/eslint-plugin": "~5.40.0",
"@typescript-eslint/parser": "~5.40.0",
"@vscode/vsce": "~2.15.0",
"eslint": "~8.25.0",
"typescript": "~4.8.4",
"vscode-tmgrammar-test": "~0.1.1"
}
}