-
-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.57 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.57 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
{
"name": "@mdx-js/language-service",
"version": "0.7.3",
"type": "module",
"description": "MDX support for Volar",
"repository": {
"type": "git",
"url": "https://github.com/mdx-js/mdx-analyzer.git",
"directory": "packages/language-service"
},
"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": {
".": {
"types": "./types/index.d.ts",
"default": "./lib/index.js"
}
},
"files": [
"lib",
"types"
],
"keywords": [
"IntelliSense",
"mdx",
"typescript",
"unified"
],
"scripts": {
"prepack": "tsc --build --clean && tsc --build",
"test-api": "node --test",
"test": "npm pack && npm run test-api"
},
"dependencies": {
"@types/estree": "^1.0.0",
"@types/mdast": "^4.0.0",
"@types/unist": "^3.0.0",
"@volar/language-service": "~2.4.0",
"acorn": "^8.14.0",
"acorn-jsx": "^5.3.0",
"acorn-loose": "^8.5.2",
"estree-util-scope": "^1.0.0",
"estree-walker": "^3.0.0",
"mdast-util-mdxjs-esm": "^2.0.0",
"mdast-util-to-markdown": "^2.0.0",
"remark-mdx": "^3.0.0",
"remark-parse": "^11.0.0",
"unified": "^11.0.0",
"unist-util-lsp": "^2.0.0",
"unist-util-visit-parents": "^6.0.0",
"vfile-message": "^4.0.0",
"vscode-uri": "^3.0.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"remark-frontmatter": "^5.0.0",
"typescript": "^5.0.0"
},
"sideEffects": false
}