-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.6 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "simvolio-support",
"displayName": "Simvolio support",
"description": "Simvolio and Protypo support",
"version": "0.5.26",
"publisher": "hy6",
"icon": "src/img/apla.png",
"author": {
"name": "Andrey Voronkov",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/CynepHy6/simvolio-support.git"
},
"engines": {
"vscode": "^1.18.0"
},
"categories": [
"Programming Languages"
],
"keywords": [
"protypo",
"simvolio",
"apla",
"genesis"
],
"contributes": {
"iconThemes": [
{
"id": "simvolio-theme",
"label": "Simvolio Theme",
"path": "./src/simvolio-icon-theme.json"
}
],
"languages": [
{
"id": "simvolio",
"extensions": [
".sim"
],
"configuration": "./src/language-conf_simvolio.json"
},
{
"id": "protypo",
"extensions": [
".ptl"
],
"configuration": "./src/language-conf_protypo.json"
}
],
"grammars": [
{
"language": "simvolio",
"scopeName": "source.simvolio",
"path": "./src/syntaxes/simvolio.tmLanguage.json"
},
{
"language": "protypo",
"scopeName": "source.protypo",
"path": "./src/syntaxes/protypo.tmLanguage.json"
}
]
},
"activationEvents": [
"onLanguage:simvolio",
"onLanguage:protypo"
],
"main": "src/extension",
"devDependencies": {
"vscode": "^1.1.8"
},
"dependencies": {
"jslint": "^0.12.0",
"npm": "^6.1.0",
"vscode": "^1.1.8"
}
}