forked from efbenson/vscode-lang-scad
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 739 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 739 Bytes
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
{
"name": "scad",
"description": "scad support for OpenSCAD",
"version": "1.0.1",
"publisher": "efbenson",
"icon": "images/logo.png",
"license": "SEE LICENSE IN LICENSE.txt",
"repository": {
"type": "git",
"url": "https://github.com/efbenson/vscode-lang-scad.git"
},
"engines": {
"vscode": "^0.10.1"
},
"categories": [
"Languages"
],
"contributes": {
"languages": [{
"id": "scad",
"aliases": ["OpenSCAD", "scad"],
"extensions": [".scad"],
"configuration": "./scad.configuration.json"
}],
"snippets": [
{
"language": "scad",
"path": "./snippets/snippets.json"
}
],
"grammars": [{
"language": "scad",
"scopeName": "source.scad",
"path": "./syntaxes/scad.tmLanguage"
}]
}
}