-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 1.87 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
{
"name": "vscode-yandex-wiki",
"displayName": "vscode-yandex-wiki",
"description": "Syntax highlight for Yandex.Wiki https://wiki.yandex.ru",
"keywords": [
"wiki",
"yandex",
"syntax",
"theme"
],
"icon": "resources/wiki.png",
"version": "1.4.0",
"publisher": "rusnasonov",
"author": {
"name": "Ruslan Nasonov",
"email": "[email protected]",
"url": "https://github.com/rusnasonov"
},
"repository": {
"type": "git",
"url": "https://github.com/rusnasonov/vscode-yandex-wiki.git"
},
"engines": {
"vscode": "^1.1.33"
},
"categories": [
"Themes",
"Snippets",
"Language Packs"
],
"activationEvents": [
"onLanguage:wiki"
],
"main": "./out/extension",
"contributes": {
"snippets": [
{
"language": "wiki",
"path": "./snippets/snippets.json"
}
],
"themes": [
{
"id": "Wiki Base",
"label": "Wiki Base",
"uiTheme": "vs-dark",
"path": "./themes/wiki.tmTheme.json"
}
],
"languages": [
{
"id": "wiki",
"extensions": [
".wiki"
],
"configuration": "./language/language-configuration.json",
"aliases": [
"Yandex.Wiki"
]
}
],
"grammars": [
{
"language": "wiki",
"scopeName": "text.yandex.wiki",
"path": "./language/wiki.tmLanguage.json"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^5.2.6",
"@types/node": "^11.12.0",
"plist": "^3.0.1",
"tslint": "^5.8.0",
"typescript": "^3.3.4000",
"vscode": "^1.1.33"
},
"dependencies": {}
}