-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.43 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.43 KB
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
{
"name": "exp-vscode-support",
"displayName": "Exp Support",
"description": "",
"version": "0.0.1",
"engines": {
"vscode": "^1.63.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [{
"id": "exp",
"aliases": ["Exp", "exp"],
"extensions": [".exp"],
"configuration": "./language-configuration.json",
"embeddedLanguages": {
"source.exp": "javascript",
"source.js": "javascript"
}
}],
"grammars": [{
"language": "exp",
"scopeName": "source.exp",
"path": "./syntaxes/exp.tmLanguage.json"
}, {
"scopeName": "source.exp.js",
"path": "./syntaxes/JavaScript.exp.tmLanguage.json"
}, {
"scopeName": "source.exp.css",
"path": "./syntaxes/css.exp.tmLanguage.json"
}, {
"scopeName": "text.html.exp",
"path": "./syntaxes/html.exp.tmLanguage.json",
"embeddedLanguages": {
"text.html": "html",
"source.exp": "javascript",
"source.js": "javascript",
"source.css": "css"
}
}]
},
"repository": {
"type": "git",
"url": "git+https://github.com/dev-univers/exp-vscode-support.git"
},
"keywords": ["Language-support", "syntaxe", "exp"],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dev-univers/exp-vscode-support/issues"
},
"homepage": "https://github.com/dev-univers/exp-vscode-support#readme"
}