-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.45 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.45 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
{
"name": "markmark",
"version": "0.6.0",
"description": "Language tooling for markdown",
"license": "MIT",
"keywords": [
"language server",
"lsp",
"markdown"
],
"repository": {
"type": "git",
"url": "https://github.com/nikku/markmark"
},
"author": "Nico Rehwaldt <git_nikku@nixis.de>",
"type": "module",
"bin": {
"markmark-lsp": "./bin/lsp.js"
},
"engines": {
"node": ">= 20.12"
},
"files": [
"bin",
"lib"
],
"dependencies": {
"chokidar": "^5.0.0",
"github-slugger": "^2.0.0",
"mdast-util-to-string": "^4.0.0",
"micromark-util-character": "^2.1.1",
"micromark-util-symbol": "^2.0.1",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"to-vfile": "^8.0.0",
"unified": "^11.0.5",
"unist-util-index": "^4.0.0",
"unist-util-visit": "^5.0.0",
"vfile": "^6.0.3",
"vfile-location": "^5.0.3",
"vfile-message": "^4.0.3",
"vscode-languageserver": "^9.0.1",
"vscode-languageserver-textdocument": "^1.0.12"
},
"devDependencies": {
"@types/chai": "^5.2.3",
"@types/mocha": "^10.0.10",
"@types/node": "^24.10.4",
"@types/unist": "^3.0.3",
"chai": "^6.2.1",
"eslint": "^9.39.2",
"eslint-plugin-bpmn-io": "^2.2.0",
"mocha": "^11.7.5",
"typescript": "^5.9.3"
},
"scripts": {
"all": "npm run lint && npm test",
"lint": "eslint . && tsc",
"test": "mocha test/spec/**/*.js"
}
}