-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.53 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
{
"name": "asebaplayground-syntaxthighlighting",
"displayName": "Aseba Playground Syntax Highlighting",
"description": "Provides syntax highlighting for the Aseba Playground language used in .playground files. The extension enhances the readability of Aseba Playground files by highlighting key elements, attributes, and comments.",
"version": "1.0.4",
"publisher": "redjive26",
"repository": {
"type": "git",
"url": "https://github.com/redjive26/Aseba-Playground-syntax-highlighting-VSCode"
},
"engines": {
"vscode": "^1.93.0"
},
"categories": [
"Programming Languages"
],
"activationEvents": [],
"main": "./extension.js",
"contributes": {
"themes": [
{
"label": "Aseba Playground Theme",
"path": "./themes/aseba-playground-color-theme.json"
}
],
"languages": [
{
"id": "aseba-playground",
"aliases": ["Aseba Playground", "aseba-playground"],
"extensions": [".playground"],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "aseba-playground",
"scopeName": "text.aseba-playground",
"path": "./syntaxes/aseba-playground.tmLanguage.json"
}
]
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "vscode-test"
},
"devDependencies": {
"@types/vscode": "^1.93.0",
"@types/mocha": "^10.0.7",
"@types/node": "20.x",
"eslint": "^9.9.1",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1"
}
}