-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
59 lines (57 loc) · 1.48 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
{
"name": "spice",
"displayName": "SPICE",
"description": "SPICE language support",
"version": "0.1.0",
"icon": "icon.jpg",
"publisher": "xuanli",
"homepage": "https://github.com/lxTHU/vscode-spice",
"repository": {
"type": "git",
"url": "https://github.com/lxTHU/vscode-spice.git"
},
"bugs": {
"url": "https://github.com/lxTHU/vscode-spice/issues"
},
"license": "MIT",
"engines": {
"vscode": "^1.15.0"
},
"categories": [
"Programming Languages"
],
"keywords": [
"spice",
"syntax",
"highlighting",
"circuit",
"snippets"
],
"contributes": {
"languages": [{
"id": "spice",
"aliases": ["SPICE", "spice"],
"extensions": [".ckt",".sp",".net",".cir",".scs",".mod",".mdl",".lib",".sub"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "spice",
"scopeName": "source.sp",
"path": "./syntaxes/SPICE.tmLanguage"
}],
"snippets": [
{
"language": "spice",
"path": "./snippets/snippets.json"
},
{
"language": "spice",
"path": "./snippets/snippets_meas.json"
},
{
"language": "spice",
"path": "./snippets/snippets_sources.json"
}
]
}
}