-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.13 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.13 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
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
115
116
117
118
119
120
121
122
123
124
{
"name": "vscode-regexplus",
"displayName": "Regex+",
"description": "Syntax highlighting for Regex+ tagged templates.",
"homepage": "https://github.com/Septh/vscode-regexplus.git#readme",
"publisher": "Septh",
"author": {
"name": "Stephan Schreiber"
},
"version": "1.0.3",
"icon": "images/icon.png",
"galleryBanner": {
"color": "#fcfcfc",
"theme": "light"
},
"license": "MIT",
"engines": {
"vscode": "^1.115.0"
},
"categories": [
"Programming Languages"
],
"keywords": [
"regex",
"regexp",
"regex+",
"regular",
"expression",
"javascript",
"typescript"
],
"contributes": {
"languages": [
{
"id": "regexplus",
"aliases": [
"Regex+"
],
"extensions": [
".regex+"
],
"configuration": "./languages/regexplus.language-configuration.json",
"icon": {
"dark": "./images/file-icon.svg",
"light": "./images/file-icon.svg"
}
}
],
"grammars": [
{
"language": "regexplus",
"scopeName": "text.regexplus",
"path": "./languages/grammars/regexplus.tmLanguage.json"
},
{
"scopeName": "text.embedded.ts.regexplus",
"injectTo": [
"source.ts"
],
"path": "./languages/grammars/injection.ts.tmLanguage.json",
"embeddedLanguages": {
"meta.embedded.ts.regexplus": "regexplus"
}
},
{
"scopeName": "text.embedded.tsx.regexplus",
"injectTo": [
"source.tsx"
],
"path": "./languages/grammars/injection.tsx.tmLanguage.json",
"embeddedLanguages": {
"meta.embedded.tsx.regexplus": "regexplus"
}
},
{
"scopeName": "text.embedded.js.regexplus",
"injectTo": [
"source.js"
],
"path": "./languages/grammars/injection.js.tmLanguage.json",
"embeddedLanguages": {
"meta.embedded.js.regexplus": "regexplus"
}
},
{
"scopeName": "text.embedded.js.jsx.regexplus",
"injectTo": [
"source.jsx"
],
"path": "./languages/grammars/injection.jsx.tmLanguage.json",
"embeddedLanguages": {
"meta.embedded.js.jsx.regexplus": "regexplus"
}
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/Septh/vscode-regexplus.git"
},
"bugs": {
"url": "https://github.com/Septh/vscode-regexplus/issues"
},
"scripts": {
"clean": "rimraf languages/grammars",
"prebuild": "npm run clean",
"build": "npm run buildOnly",
"buildOnly": "npm run build:grammars",
"build:grammars": "node script/convert-grammars.mts",
"watch:grammars": "node script/convert-grammars.mts --watch",
"test": "echo \"Error: no test specified\" && exit 1",
"vscode:prepublish": "npm run build:grammars"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^24.12.2",
"@types/vscode": "^1.100.0",
"@vscode/vsce": "^3.9.0",
"js-yaml": "^4.1.1",
"regex": "^6.1.0",
"rimraf": "^6.1.3",
"typescript": "^6.0.2"
}
}