-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
110 lines (110 loc) · 3.15 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
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
{
"name": "vscode-markdown-linkifier",
"displayName": "Markdown Linkifier",
"description": "Creates quick local markdown links using [[name]] syntax",
"version": "0.1.2",
"license": "MIT",
"publisher": "bradzacher",
"repository": {
"type": "git",
"url": "https://github.com/bradzacher/vscode-markdown-linkifier.git"
},
"author": {
"email": "[email protected]",
"name": "Brad Zacher",
"url": "https://github.com/bradzacher"
},
"scripts": {
"vscode:prepublish": "yarn run clean && yarn run build",
"build": "tsc -b tsconfig.build.json",
"clean": "tsc -b tsconfig.build.json --clean",
"format": "prettier --write \"./**/*.{ts,js,json,md}\" --ignore-path ./.prettierignore",
"lint": "eslint . --ext .js,.ts --ignore-path ./.eslintignore",
"vscode:publish": "yarn vsce publish",
"pretest": "yarn run build",
"test": "node ./out/test/runTest.js",
"typecheck": "tsc -p tsconfig.json --noEmit",
"watch": "tsc -b tsconfig.build.json --watch"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.2",
"@types/vscode": "^1.30.0",
"eslint-config-brad": "^4.0.0",
"glob": "^7.1.5",
"jest": "^26.4.2",
"prettier": "^2.1.2",
"typescript": "^4.0.3",
"vsce": "^1.69.0",
"vscode-test": "^1.2.2"
},
"//": "vscode extension settings",
"engines": {
"vscode": "^1.32.0"
},
"keywords": [
"markdown",
"link",
"linkify"
],
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"extensionKind": [
"workspace"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [],
"configuration": {
"title": "Markdown Linkifier",
"type": "object",
"properties": {
"markdown-linkifier.ignore.file": {
"title": "Ignored File Names",
"description": "File names that should just be ignored.",
"type": "array",
"items": {
"type": "string"
},
"default": [
"README.md"
]
},
"markdown-linkifier.ignore.folder": {
"title": "Ignored Folder Names",
"description": "Folder that should just be ignored.",
"type": "array",
"items": {
"type": "string"
},
"default": [
".git",
".vscode",
"node_modules"
]
},
"markdown-linkifier.ignore.path": {
"title": "Ignored Paths",
"description": "Paths that should just be ignored. This applies to both files and folders. Paths are relative to the workspace root.",
"type": "array",
"items": {
"type": "string"
}
},
"markdown-linkifier.roots": {
"title": "Root Folder Paths",
"description": "Folders that should be searched for docs. If this is configured, the extension will treat each root as a self-contained set of files. If this is not configured, the entire workspace will be treated as the root.",
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
}