-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (69 loc) · 1.61 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
{
"name": "qat",
"version": "0.3.12",
"displayName": "Qat Programming Language",
"publisher": "aldrinsartfactory",
"repository": {
"type": "git",
"url": "https://github.com/qatlang/qat-vscode.git"
},
"homepage": "https://github.com/qatlang/qat-vscode#readme",
"author": {
"name": "Aldrin Mathew",
"email": "[email protected]",
"url": "https://github.com/AldrinMathew"
},
"description": "Official analysis, highlighting, formatting and syntax support for the Qat programming language...",
"icon": "media/qat_icon.png",
"dependencies": {
"@vscode/test-electron": "^2.1.3",
"strip-ansi": "^7.0.1",
"ts-loader": "^9.3.1",
"typescript": "^4.8.2",
"which": "^2.0.2"
},
"devDependencies": {
"@types/node": "18.7.13",
"@types/vscode": "^1.66.0",
"@types/which": "^2.0.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"main": "out/dist/extension",
"scripts": {
"build": "webpack --mode development",
"release": "webpack --mode production"
},
"engines": {
"vscode": "^1.66.0"
},
"categories": [
"Programming Languages"
],
"license": "Inspectable License 1.0",
"contributes": {
"languages": [
{
"id": "qat",
"aliases": [
"qat",
"qat"
],
"extensions": [
".qat"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "qat",
"scopeName": "source.qat",
"path": "./syntaxes/qat.tmLanguage.json"
}
]
},
"activationEvents": [
"onLanguage:qat"
]
}