-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 1.51 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": "gesstabs",
"displayName": "gessTabs",
"description": "gess.Tabs Support",
"version": "0.2.8",
"publisher": "volkerdobler",
"engines": {
"vscode": "^1.75.0"
},
"categories": [
"Programming Languages",
"Snippets"
],
"repository": {
"type": "git",
"url": "https://github.com/volkerdobler/gessTabs.git"
},
"license": "AFL-3.0",
"main": "./out/extension",
"icon": "images/gesstabs_icon.png",
"contributes": {
"languages": [
{
"id": "gesstabs",
"aliases": [
"gessTabs",
"gess.Tabs"
],
"extensions": [
".tab",
".inc"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "gesstabs",
"scopeName": "source.gessTabs",
"path": "./syntaxes/gessTabs.json"
}
],
"snippets": [
{
"language": "gesstabs",
"path": "./snippets/snippets.json"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint src --ext ts",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/node": "^20.11.19",
"@types/vscode": "^1.86.0",
"eslint": "^8.32.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0"
},
"dependencies": {
"vscode-oniguruma": "^2.0.1",
"vscode-textmate": "^9.0.0"
}
}