-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
60 lines (60 loc) · 1.34 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
{
"name": "coc-markmap",
"version": "0.8.0",
"description": "Visualize your Markdown as mindmaps with Markmap",
"author": "Gerald <gera2ld@live.com>",
"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/node": "^20.11.17",
"coc.nvim": "0.0.83-next.9",
"del-cli": "^6.0.0",
"es-toolkit": "^1.31.0",
"husky": "^9.1.7"
},
"dependencies": {
"markmap-cli": "0.18.7",
"open": "^10.1.0"
},
"engines": {
"coc": ">=0.0.80",
"node": ">=18"
},
"keywords": [
"coc.nvim",
"markmap"
],
"activationEvents": [
"onLanguage:markdown"
],
"contributes": {
"configuration": {
"title": "coc-markmap",
"properties": {}
}
},
"repository": "git@github.com:gera2ld/coc-markmap.git",
"browserslist": [
"node >= 18"
]
}