-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathpackage.json
More file actions
131 lines (131 loc) · 4.29 KB
/
package.json
File metadata and controls
131 lines (131 loc) · 4.29 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "markdown-links",
"displayName": "Markdown Links",
"description": "Adds command - Show Graph - that displays a graph of local links between markdown files in the current working directory.",
"version": "0.8.5",
"publisher": "tchayen",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other"
],
"keywords": [
"markdown"
],
"bugs": {
"url": "https://github.com/tchayen/markdown-links/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/tchayen/markdown-links"
},
"homepage": "https://github.com/tchayen/markdown-links#readme",
"qna": "marketplace",
"license": "MIT",
"activationEvents": [
"onLanguage:markdown"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "markdown-links.showGraph",
"title": "Markdown Links: Show Graph"
}
],
"configuration": {
"title": "Markdown Links",
"properties": {
"markdown-links.showColumn": {
"type": "string",
"default": "beside",
"description": "- active – in the currently focused column.\n- beside – (default) other than the current.\n- one, two, three, four, five, six, seven, eight, nine – respective editor columns."
},
"markdown-links.openColumn": {
"type": "string",
"default": "one",
"description": "- active – in the currently focused column.\n- beside – other than the current.\n- one (default), two, three, four, five, six, seven, eight, nine – respective editor columns."
},
"markdown-links.fileIdRegexp": {
"type": "string",
"default": "\\d{14}",
"description": "Regular extension used to find file IDs. First match of this regex in file contents, excluding [[links]], will be used as the file ID. This file ID can be used for wiki-style links."
},
"markdown-links.autoStart": {
"type": "boolean",
"default": false,
"description": "Should Markdown Links automatically start when a markdown file is opened."
},
"markdown-links.graphType": {
"type": "string",
"enum": [
"default",
"obsidian"
],
"default": "default",
"description": "Choose type of graph appearance."
},
"markdown-links.titleMaxLength": {
"type": "number",
"default": 24,
"description": "The maximum title length before being abbreviated. Set to 0 or less to disable."
},
"markdown-links.wikilinkAliasDivider": {
"type": "string",
"default": ":",
"description": "Character used to separate the page name from the alias in wiki-style links. Common values are '|' (pipe) or ':' (colon)."
},
"markdown-links.excludePatterns": {
"type": "array",
"items": {
"type": "string"
},
"default": [
"**/node_modules/**",
"**/.git/**"
],
"description": "Glob patterns for files/folders to exclude from the graph. Common patterns: '**/dist/**', '**/build/**', '**/.vscode/**'."
}
}
}
},
"scripts": {
"vscode:prepublish": "webpack --mode production",
"webpack": "webpack --mode development",
"webpack-dev": "webpack --mode development --watch",
"compile": "webpack --mode production",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"tsc": "tsc --noEmit",
"pretest": "tsc -p . --outDir out",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/js-yaml": "^4.0.9",
"@types/md5": "^2.3.6",
"@types/mdast": "^4.0.4",
"@types/mocha": "^10.0.10",
"@types/node": "^20.19.27",
"@types/vscode": "^1.85.0",
"eslint": "^9.39.2",
"mocha": "^11.7.5",
"prettier": "^3.4.2",
"ts-loader": "^9.5.4",
"typescript": "5.9.3",
"typescript-eslint": "^8.51.0",
"webpack": "^5.104.1",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"@vscode/test-electron": "^2.5.2",
"js-yaml": "^4.1.1",
"md5": "^2.3.0",
"remark-frontmatter": "^5.0.0",
"remark-parse": "^11.0.0",
"remark-wiki-link": "^2.0.1",
"unified": "^11.0.5"
}
}