-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
96 lines (96 loc) · 2.66 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
95
96
{
"name": "InterlisLanguageSupport",
"displayName": "INTERLIS 2",
"description": "Language support for INTERLIS 2.4",
"icon": "images/iliIcon.PNG",
"publisher": "geowerkstatt",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/GeoWerkstatt/vsc_interlis2_extension.git"
},
"version": "0.2.2",
"engines": {
"vscode": "^1.63.0"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"onLanguage:INTERLIS2"
],
"main": "./out/setup.js",
"browser": "./out/browser.js",
"keywords": [
"INTERLIS",
"ili"
],
"contributes": {
"languages": [
{
"id": "INTERLIS2",
"aliases": [
"INTERLIS2",
"ili"
],
"extensions": [
".ili"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "INTERLIS2",
"scopeName": "source.ili",
"path": "./syntaxes/ili.tmLanguage.json"
}
],
"snippets": [
{
"language": "INTERLIS2",
"path": "./snippets/interlis2.json"
}
],
"commands": [
{
"command": "interlis.generateMarkdown",
"title": "Generate markdown documentation",
"category": "INTERLIS 2"
}
],
"menus": {
"editor/context": [
{
"when": "editorLangId == INTERLIS2",
"command": "interlis.generateMarkdown",
"group": "navigation"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint . --ext .ts,.tsx",
"watch": "tsc -watch -p ./",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\""
},
"devDependencies": {
"@types/node": "^16.11.7",
"@types/node-fetch": "^2.6.2",
"@types/vscode": "^1.34.0",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"@vscode/vsce": "^2.21.1",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"typescript": "^4.8.4"
},
"dependencies": {
"node-fetch": "^2.6.7",
"vscode-languageclient": "^9.0.1"
}
}