-
-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.17 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.17 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
{
"name": "@mdx-js/language-server",
"version": "0.6.0",
"type": "module",
"description": "A language server for MDX",
"repository": {
"type": "git",
"url": "https://github.com/mdx-js/mdx-analyzer.git",
"directory": "packages/language-server"
},
"homepage": "https://mdxjs.com",
"bugs": "https://github.com/mdx-js/mdx-analyzer/issues",
"author": "Remco Haszing <[email protected]>",
"funding": "https://opencollective.com/unified",
"license": "MIT",
"exports": "./lib/index.js",
"bin": {
"mdx-language-server": "./lib/index.js"
},
"files": [
"lib"
],
"keywords": [
"IntelliSense",
"mdx",
"typescript",
"unified"
],
"scripts": {
"test-api": "node --test",
"test": "npm run test-api"
},
"dependencies": {
"@mdx-js/language-service": "0.7.0",
"@volar/language-server": "~2.4.0",
"jiti": "^2.0.0",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"volar-service-markdown": "0.0.64",
"volar-service-typescript": "0.0.64"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@volar/test-utils": "~2.4.0",
"unified": "^11.0.0",
"vscode-uri": "^3.0.0"
}
}