-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
83 lines (83 loc) · 2.12 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
{
"name": "vscode-markdown-table-sort",
"displayName": "Markdown Table Sort Prettier",
"description": "Markdown table prettier extension for Visual Studio Code",
"version": "2.0.0",
"license": "MIT",
"categories": [
"Formatters"
],
"keywords": [
"markdown",
"table"
],
"publisher": "simonguo",
"repository": {
"type": "git",
"url": "https://github.com/simonguo/vscode-markdown-table-sort.git"
},
"engines": {
"vscode": "^1.85.0"
},
"activationEvents": [
"onLanguage:markdown"
],
"icon": "resources/logo.jpeg",
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "vscode-test",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.6",
"@types/node": "^16.18.34",
"@types/vscode": "^1.85.0",
"@types/prettier": "^1.13.2",
"@vscode/test-cli": "^0.0.3",
"@vscode/test-electron": "^2.3.8",
"glob": "^7.1.6",
"mocha": "^8.2.1",
"tslint": "^5.8.0",
"typescript": "^5.3.3"
},
"dependencies": {
"prettier": "^1.14.3"
},
"contributes": {
"configuration": [
{
"title": "Markdown Table Sort Prettier",
"properties": {
"markdownTableSortPrettier.enable": {
"type": "boolean",
"default": true,
"description": "Enable markdown table sort prettier"
},
"markdownTableSortPrettier.sortOrder": {
"type": "string",
"default": "asc",
"description": "Sort order, asc or desc"
},
"markdownTableSortPrettier.sortColumn": {
"type": "number",
"default": 0,
"description": "Sort column index"
},
"markdownTableSortPrettier.ignoreCharacters": {
"type": "array",
"default": [
" ",
"~"
],
"description": "Ignore characters"
}
}
}
]
}
}