-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.32 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
{
"publisher": "fluent-vue",
"name": "fluent-vue",
"displayName": "fluent-vue",
"type": "module",
"version": "1.0.0",
"private": true,
"description": "Syntax highlighting for Fluent and fluent-vue",
"author": {
"name": "Ivan Demchuk",
"email": "[email protected]",
"url": "https://demivan.me"
},
"repository": "https://github.com/fluent-vue/vscode-extension",
"categories": [
"Programming Languages"
],
"icon": "images/logo.png",
"engines": {
"vscode": "^1.82.0"
},
"contributes": {
"languages": [
{
"id": "ftl",
"aliases": [
"Fluent",
"ftl"
],
"extensions": [
".ftl"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "ftl",
"scopeName": "source.ftl",
"path": "./syntaxes/ftl.tmLanguage.json"
},
{
"path": "./syntaxes/vue.injection.json",
"scopeName": "meta.embedded.ftl",
"injectTo": [
"source.vue"
],
"embeddedLanguages": {
"source.ftl": "ftl",
"meta.embedded.block.ftl": "ftl"
}
}
]
},
"scripts": {
"lint": "eslint ."
},
"devDependencies": {
"@antfu/eslint-config": "^2.1.0",
"eslint": "^8.54.0"
}
}