-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.75 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.75 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
{
"name": "elastic-docs-v3-utilities",
"displayName": "Elastic Docs Utilities",
"description": "Utilities for Elastic Docs authoring",
"version": "0.16.1",
"publisher": "Elastic",
"repository": {
"type": "git",
"url": "https://github.com/elastic/elastic-docs-v3-vscode"
},
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Other"
],
"icon": "images/icon.png",
"activationEvents": [
"onLanguage:markdown"
],
"main": "./out/extension.js",
"browser": "./out/extension-web.js",
"contributes": {
"languages": [
{
"id": "markdown",
"extensions": [
".md"
]
}
],
"grammars": [
{
"path": "./syntaxes/elastic-markdown.tmLanguage.json",
"scopeName": "elastic-directives.injection",
"injectTo": [
"text.html.markdown",
"markdown"
],
"embeddedLanguages": {
"text.html.markdown": "markdown"
},
"priority": 1
}
],
"commands": [
{
"command": "elastic-docs-v3.replaceEntireLine",
"title": "Replace entire line"
},
{
"command": "elastic-docs-v3.refreshVersions",
"title": "Elastic Docs: Refresh Versions Cache"
},
{
"command": "elastic-docs-v3.checkValeUpdates",
"title": "Elastic Docs: Check for Vale Style Guide Updates"
},
{
"command": "elastic-docs-v3.testValeUpdateNotification",
"title": "Elastic Docs: Test Vale Update Notification"
},
{
"command": "elastic-docs-v3.checkDocsBuilderUpdates",
"title": "Elastic Docs: Check for docs-builder Updates"
},
{
"command": "elastic-docs-v3.testDocsBuilderUpdateNotification",
"title": "Elastic Docs: Test docs-builder Update Notification"
},
{
"command": "elastic-docs-v3.checkMcpInstall",
"title": "Elastic Docs: Install MCP Server"
},
{
"command": "elastic-docs-v3.testMcpInstallNotification",
"title": "Elastic Docs: Test MCP Install Notification"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "node esbuild.js --minify",
"watch": "node esbuild.js --watch",
"package": "vsce package",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"test": "node ./out/test/runTest.js",
"copyright:check": "node scripts/check-copyright.js",
"copyright:fix": "node scripts/check-copyright.js --fix"
},
"devDependencies": {
"@types/node": "18.x",
"@types/vscode": "^1.74.0",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"esbuild": "^0.25.11",
"eslint": "^8.28.0",
"typescript": "^4.9.4"
}
}