-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.6 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
{
"name": "marscript",
"displayName": "MarScript Syntax Highlighting",
"description": "Syntax highlighting support for MarScript / MarWin (.sbr, .mpr, .inc files)",
"version": "1.3.3",
"publisher": "dborgards",
"license": "MIT",
"keywords": [
"marscript",
"marwin",
"mahr",
"syntax",
"highlighting"
],
"repository": {
"type": "git",
"url": "https://github.com/dborgards/marscript.git"
},
"bugs": {
"url": "https://github.com/dborgards/marscript/issues"
},
"homepage": "https://github.com/dborgards/marscript#readme",
"scripts": {
"release": "semantic-release"
},
"engines": {
"vscode": "^1.98.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "marscript",
"aliases": [
"MarScript",
"marscript"
],
"extensions": [
".sbr",
".mpr",
".inc"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "marscript",
"scopeName": "source.marscript",
"path": "./syntaxes/marscript.tmLanguage.json"
}
]
},
"overrides": {
"npm": "git+https://github.com/npm/cli.git#4791b27f15c81d474a68daabb10b3ba6d20a0e71",
"@actions/http-client": {
"undici": "^6.28.0"
},
"@semantic-release/github": {
"undici": "^7.29.0"
}
},
"devDependencies": {
"@semantic-release/changelog": "^7.0.0",
"@semantic-release/git": "^11.0.0",
"@semantic-release/github": "^12.0.8",
"semantic-release": "^25.0.5"
}
}