-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
114 lines (114 loc) · 3.19 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "yash",
"displayName": "Yash",
"description": "Yet another syntax highlighter for lex/yacc & flex/bison.",
"version": "0.3.0",
"engines": {
"vscode": "^1.44.0"
},
"license": "MIT",
"publisher": "daohong-emilio",
"icon": "assets/logo.png",
"repository": {
"type": "git",
"url": "https://github.com/babyraging/yash.git"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"onLanguage:yacc",
"onLanguage:lex"
],
"main": "./out/extension.js",
"contributes": {
"languages": [
{
"id": "lex",
"aliases": [
"Lex",
"lex",
"Flex",
"flex"
],
"extensions": [
".l",
".ll",
".l++",
".lxx",
".lpp",
".fl",
".lex",
".flex"
],
"configuration": "./lex-configuration.json"
},
{
"id": "yacc",
"aliases": [
"Yacc",
"yacc",
"Bison",
"bison"
],
"extensions": [
".y",
".yy",
".y++",
".yxx",
".ypp",
".yacc"
],
"configuration": "./yacc-configuration.json"
}
],
"grammars": [
{
"path": "./syntaxes/dollars.injection.json",
"scopeName": "dollars.injection",
"injectTo": [
"source.y"
]
},
{
"language": "lex",
"scopeName": "source.l",
"path": "./syntaxes/lex.tmLanguage.json",
"embeddedLanguages": {
"entity.block.lex": "cpp"
}
},
{
"language": "yacc",
"scopeName": "source.y",
"path": "./syntaxes/yacc.tmLanguage.json",
"embeddedLanguages": {
"entity.prologue.yacc": "cpp",
"entity.action.yacc": "cpp"
}
}
],
"configuration": {
"title": "YASH",
"properties": {
"yash.YYTYPE": {
"type": "string",
"default": "",
"markdownDescription": "Set the default YYSTYPE. For example `void*`. Setting this field will disable error message on implicitly typed non-terminal symbols."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "tslint -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "^12.12.0",
"@types/vscode": "^1.44.0",
"tslint": "^5.19.0",
"typescript": "^3.8.3"
}
}