-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
61 lines (61 loc) · 1.39 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
{
"name": "coc-markmap",
"version": "0.7.2",
"description": "Visualize your Markdown as mindmaps with Markmap",
"author": "Gerald <[email protected]>",
"license": "MIT",
"scripts": {
"prepare": "husky install",
"dev": "rollup -cw",
"clean": "del-cli dist",
"prepublishOnly": "run-s build",
"ci": "run-s lint",
"build:js": "rollup -c",
"build": "run-s ci clean build:js",
"lint": "eslint --ext .ts . && prettier -c src",
"lint:fix": "eslint --ext .ts . --fix && prettier -c src -w"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"main": "dist/index.js",
"files": [
"dist"
],
"devDependencies": {
"@gera2ld/plaid": "^2.7.0",
"@gera2ld/plaid-rollup": "^2.7.0",
"@types/lodash.debounce": "^4.0.9",
"@types/node": "^20.11.17",
"coc.nvim": "0.0.83-next.9",
"del-cli": "^5.1.0",
"husky": "^9.0.10"
},
"dependencies": {
"lodash.debounce": "^4.0.8",
"markmap-cli": "^0.16.0",
"portfinder": "^1.0.32"
},
"engines": {
"coc": ">=0.0.80",
"node": ">=18"
},
"keywords": [
"coc.nvim",
"markmap"
],
"activationEvents": [
"onLanguage:markdown"
],
"contributes": {
"configuration": {
"title": "coc-markmap",
"properties": {}
}
},
"repository": "[email protected]:gera2ld/coc-markmap.git",
"browserslist": [
"node >= 18"
]
}