-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
143 lines (143 loc) · 2.79 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "stml",
"version": "0.2.1",
"publisher": "NobleRobot",
"engines": {
"vscode": "^1.63.0"
},
"license": "MIT",
"displayName": "STML",
"description": "Support for Sleeptime Markup Language (STML), Sleeptime Style Sheet (SSS), and Sleeptime Include (STINC) documents.",
"author": {
"name": "Mark LaCroix"
},
"categories": [
"Programming Languages",
"Formatters",
"Snippets",
"Themes"
],
"keywords": [
"stml",
"sss",
"Dreamsettler",
"Sleeptime",
"Sleeptime Markup Language"
],
"galleryBanner": {
"color": "#3a355a",
"theme": "dark"
},
"preview": true,
"contributes": {
"languages": [
{
"id": "stml",
"extensions": [
".stm",
".stml"
],
"aliases": [
"Sleeptime Markup Language",
"STML"
],
"firstLine": "<!DOCTYPE stml",
"configuration": "./language-configuration.json",
"icon": {
"light": "images/icon-stml.png",
"dark": "images/icon-stml.png"
},
"mimetypes": [
"text/stml"
]
},
{
"id": "sss",
"extensions": [
".sss"
],
"aliases": [
"Sleeptime Stylesheet",
"SSS"
],
"firstLine": "<sss>",
"configuration": "./language-configuration.json",
"icon": {
"light": "images/icon-sss.png",
"dark": "images/icon-sss.png"
},
"mimetypes": [
"text/stml"
]
},
{
"id": "stinc",
"extensions": [
".stinc"
],
"aliases": [
"Sleeptime Include",
"STINC"
],
"firstLine": "<",
"configuration": "./language-configuration.json",
"icon": {
"light": "images/icon-stinc.png",
"dark": "images/icon-stinc.png"
},
"mimetypes": [
"text/stml"
]
}
],
"grammars": [
{
"language": "stml",
"scopeName": "source.stml",
"path": "./syntaxes/stml.tmLanguage.json",
"tokenTypes": {
"meta.tag string.quoted": "other"
}
},
{
"language": "sss",
"scopeName": "source.stml",
"path": "./syntaxes/stml.tmLanguage.json",
"tokenTypes": {
"meta.tag string.quoted": "other"
}
},
{
"language": "stinc",
"scopeName": "source.stml",
"path": "./syntaxes/stml.tmLanguage.json",
"tokenTypes": {
"meta.tag string.quoted": "other"
}
}
],
"snippets": [{
"language": "stml",
"path": "./snippets/stml.snippets.json"
}],
"themes": [{
"label": "Sleeptime (STML) Dark",
"uiTheme": "vs-dark",
"path": "./themes/Sleeptime-STML-dark.json"
}]
},
"qna": false,
"sponsor": {
"url": "https://github.com/sponsors/NobleRobot"
},
"icon": "images/icon.png",
"homepage": "https://noblerobot.com/stml",
"bugs": {
"url": "https://github.com/NobleRobot/vscode-stml/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/NobleRobot/vscode-stml.git"
}
}