-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
74 lines (74 loc) · 1.87 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
{
"name": "mdc",
"packageManager": "[email protected]",
"displayName": "MDC - Markdown Components",
"description": "Provides syntax highlighting and colon matching for MDC (Markdown Components) files for Nuxt Content.",
"version": "0.2.0",
"publisher": "Nuxt",
"icon": "images/icon.png",
"repository": {
"url": "https://github.com/nuxtlabs/vscode-mdc",
"type": "git"
},
"homepage": "https://github.com/nuxtlabs/vscode-mdc/blob/main/README.md",
"license": "MIT",
"engines": {
"vscode": "^1.42.0"
},
"categories": [
"Programming Languages",
"Snippets"
],
"contributes": {
"languages": [
{
"id": "mdc",
"aliases": [
"MDC",
"mdc",
"Markdown Components",
"Nuxt Content"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "mdc",
"scopeName": "text.markdown.mdc",
"path": "./syntaxes/mdc.tmLanguage.json",
"injectTo": [
"text.html.markdown",
"text.html.markdown.jsx"
]
}
],
"snippets": [
{
"language": "mdc",
"path": "./snippets/markdown.code-snippets"
}
]
},
"scripts": {
"vscode:prepublish": "npm run build",
"build": "esno scripts/build.ts",
"dev": "esno watch scripts/build.ts",
"lint": "eslint src --ext ts",
"test": "vitest",
"release": "standard-version && git push --follow-tags",
"generate": "vsce package --no-dependencies",
"publish": "vsce publish --no-dependencies"
},
"devDependencies": {
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@types/node": "^18.17.12",
"@types/vscode": "1.42.0",
"@vscode/vsce": "^2.21.0",
"eslint": "^8.48.0",
"esno": "^0.17.0",
"standard-version": "^9.5.0",
"typescript": "5.2.2",
"vscode-textmate": "^9.0.0"
}
}