-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
143 lines (143 loc) · 3.62 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "vscode-remark",
"version": "3.0.0",
"description": "Lint and format markdown code with remark",
"license": "MIT",
"private": true,
"keywords": [
"markdown",
"remark",
"format",
"lint",
"validate"
],
"repository": {
"type": "git",
"url": "https://github.com/remarkjs/vscode-remark"
},
"bugs": "https://github.com/remarkjs/vscode-remark/issues",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
},
"author": "Denis Malinochkin <[email protected]>",
"contributors": [
"Denis Malinochkin <[email protected]>",
"Titus Wormer <[email protected]> (https://wooorm.com)",
"Remco Haszing <[email protected]>",
"Asbjørn Ulsberg <[email protected]>",
"Christian Murphy <[email protected]>"
],
"main": "out/extension.js",
"engines": {
"vscode": "^1.67.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/vscode": "^1.0.0",
"@vscode/test-electron": "^2.0.0",
"@vscode/vsce": "^2.0.0",
"esbuild": "^0.20.0",
"ovsx": "^0.9.0",
"prettier": "^3.0.0",
"remark-cli": "^12.0.0",
"remark-language-server": "^3.0.0",
"remark-preset-wooorm": "^10.0.0",
"typescript": "^5.0.0",
"vscode-languageclient": "^9.0.0",
"xo": "^0.58.0"
},
"scripts": {
"vscode:prepublish": "npm run build",
"build": "esbuild extension=src/extension.js remark-language-server --bundle --platform=node --target=node16 --format=cjs --external:vscode --outdir=out --minify",
"format": "remark . -qfo && prettier . -w --log-level warn && xo --fix",
"test-api": "node --conditions development test.mjs",
"test": "npm run build && npm run format && npm run test-api"
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"bracketSpacing": false,
"semi": false,
"trailingComma": "none"
},
"xo": {
"prettier": true,
"rules": {
"unicorn/prefer-module": "off"
}
},
"remarkConfig": {
"plugins": [
"preset-wooorm",
[
"remark-lint-no-html",
false
]
]
},
"displayName": "remark",
"publisher": "unifiedjs",
"icon": "icon.png",
"categories": [
"Formatters",
"Linters"
],
"activationEvents": [
"onLanguage:markdown"
],
"qna": "https://github.com/orgs/remarkjs/discussions",
"sponsor": {
"url": "https://github.com/sponsors/unifiedjs"
},
"capabilities": {
"virtualWorkspaces": {
"supported": false,
"description": "This extension relies on the file system to load remark and plugins."
},
"untrustedWorkspaces": {
"supported": false,
"description": "This extension loads configuration files and plugins from workspace and executes them."
}
},
"contributes": {
"configuration": {
"title": "remark",
"properties": {
"remark.requireConfig": {
"type": "boolean",
"default": false,
"markdownDescription": "If true, only perform actions if a [configuration file](https://github.com/remarkjs/vscode-remark#configuration-file) is found."
}
}
},
"jsonValidation": [
{
"fileMatch": [
".remarkrc",
".remarkrc.json"
],
"url": "https://json.schemastore.org/remarkrc"
},
{
"fileMatch": "package.json",
"url": "./package.schema.json"
}
],
"languages": [
{
"id": "ignore",
"filenames": [
".remarkignore"
]
},
{
"id": "json",
"filenames": [
".remarkrc"
]
}
]
}
}