-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.32 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
{
"name": "vscode-markdown-compact-table-formatter",
"version": "1.0.0",
"displayName": "Markdown Compact Table Formatter",
"description": "Format Markdown tables in a compact way / 以紧凑的方式格式化 Markdown 表格",
"scripts": {
"release": "tsc -p ./ && vsce package",
"watch": "tsc -watch -p ./"
},
"publisher": "cipchk",
"license": "MIT",
"homepage": "https://github.com/cipchk/vscode-markdown-compact-table-formatter/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/cipchk/vscode-markdown-compact-table-formatter.git"
},
"bugs": {
"url": "https://github.com/cipchk/vscode-markdown-compact-table-formatter/issues",
"email": "cipchk@qq.com"
},
"keywords": [
"vscode",
"vscode snippet",
"vscode extension",
"markdown table",
"markdown table formatter"
],
"engines": {
"vscode": "^1.40.0"
},
"categories": [
"Other",
"Formatters"
],
"activationEvents": [
"onLanguage:markdown"
],
"main": "./out/index.js",
"icon": "icon.png",
"contributes": {
"configuration": {
"type": "object",
"title": "Markdown Inline Table Formatter",
"properties": {
"vscode-markdown-compact-table-formatter.enable": {
"type": "boolean",
"default": true,
"description": "Enable/disable Markdown Inline Table Formatter."
},
"vscode-markdown-compact-table-formatter.spacePadding": {
"type": "boolean",
"default": true,
"description": "How many spaces between left and right of each column content."
},
"vscode-markdown-compact-table-formatter.keepFirstAndLastPipes": {
"type": "boolean",
"default": true,
"description": "Keep first and last pipes \"|\" in table formatting. Tables are easier to format when pipes are kept."
},
"vscode-markdown-compact-table-formatter.emptyPlaceholder": {
"type": "string",
"default": "-",
"description": "The default data when the cell is empty, default: `-`"
}
}
}
},
"devDependencies": {
"@types/node": "^10.12.2",
"typescript": "^3.8.3",
"ts-node": "^8.9.0",
"tslint": "^6.1.1",
"tslint-config-prettier": "^1.18.0",
"vscode": "^1.1.36",
"vscode-test": "^1.3.0"
}
}