-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 1.81 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
{
"name": "vscode-oktalz-present",
"displayName": "present.slide",
"description": "present file - markdown like presenting tool",
"repository": {
"url": "https://github.com/oktalz/present-vscode-ext"
},
"publisher": "ZlatkoBratkovic",
"license": "ISC",
"version": "0.9.10",
"icon": "assets/present.png",
"engines": {
"vscode": "^1.92.0"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"onLanguage:idle"
],
"main": "./client.js",
"contributes": {
"commands": [
{
"command": "extension.startServer",
"title": "Start Language Server"
}
],
"snippets": [
{
"language": "present",
"path": "./snippets/settings.json"
},
{
"language": "present",
"path": "./snippets/code.json"
},
{
"language": "present",
"path": "./snippets/slide.json"
},
{
"language": "present",
"path": "./snippets/style.json"
},
{
"language": "present",
"path": "./snippets/table.json"
},
{
"language": "present",
"path": "./snippets/template.json"
}
],
"languages": [
{
"id": "present",
"aliases": [
"present"
],
"extensions": [
".slide", ".present"
],
"filenames": [
".slide", ".present"
],
"icon": {
"light": "./assets/present.png",
"dark": "./assets/present.png"
},
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "present",
"scopeName": "source.present",
"path": "./syntaxes/present.tmLanguage.json"
}
]
},
"dependencies": {
"vscode-languageclient": "^9.0.1"
}
}