This repository has been archived by the owner on Jul 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.54 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
{
"name": "astro",
"version": "1.0.1",
"displayName": "Astro",
"publisher": "Nixinova",
"repository": "https://github.com/Nixinova/Astro-vscode",
"license": "ISC",
"description": "Language support for Snowpack's Astro site generator.",
"keywords": [
"astro",
"snowpack",
"astro site generator"
],
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "yaml2json ./grammars/astro.tmLanguage.yaml --save"
},
"engines": {
"vscode": "^1.48.0"
},
"categories": [
"Snippets",
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "astro",
"aliases": [
"Astro"
],
"extensions": [
".astro"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "astro",
"scopeName": "text.html.astro",
"path": "./grammars/astro.tmLanguage.json",
"embeddedLanguages": {
"text.html.basic": "html",
"source.js": "javascript",
"source.css": "css"
}
}
],
"snippets": [
{
"language": "astro",
"path": "./snippets/snippets.json"
}
]
},
"devDependencies": {
"yamljs": "^0.3.0"
}
}