-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
99 lines (99 loc) · 1.94 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
97
98
99
{
"name": "5etools-language-server",
"displayName": "5eTools Language Server",
"description": "Adds syntax highlighting, snippets, and schemas for 5eTools data files",
"version": "0.2.2",
"publisher": "revilowaldow",
"icon": "images/5eUA.png",
"repository": {
"type": "git",
"url": "https://github.com/revilowaldow/5eTools-Language-Server.git"
},
"bugs": {
"url": "https://github.com/revilowaldow/5eTools-Language-Server/issues"
},
"author": {
"name": "revilowaldow",
"url": "https://github.com/revilowaldow"
},
"categories": [
"Programming Languages",
"Snippets"
],
"keywords": [
"5eTools",
"5e",
"Snippet",
"Schema",
"Syntax Highlighting"
],
"license": "MIT",
"contributes": {
"jsonValidation": [
{
"fileMatch": [
"*.json",
"*.jsonc",
"!package.json",
"!package-lock.json",
"*.5e"
],
"url": "https://raw.githubusercontent.com/TheGiddyLimit/5etools-utils/master/schema/brew-fast/homebrew.json"
}
],
"languages": [
{
"id": "5etools",
"aliases": [
"5eTools"
],
"extensions": [
".5e"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"scopeName": "source.5e",
"path": "./syntaxes/5eLang.json",
"language": "5etools",
"injectTo": [
"source.json"
]
}
],
"snippets": [
{
"language": "json",
"path": "./snippets/class.json"
},
{
"language": "json",
"path": "./snippets/entries.json"
},
{
"language": "json",
"path": "./snippets/meta.json"
},
{
"language": "json",
"path": "./snippets/snippets.json"
},
{
"language": "json",
"path": "./snippets/tags.json"
},
{
"language": "json",
"path": "./snippets/foundry.json"
}
]
},
"engines": {
"vscode": "^1.28.0"
},
"devDependencies": {
"@vscode/vsce": "^2.21.1"
}
}