forked from jota0222/MultiFormatterVSCode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.24 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
{
"name": "multi-formatter",
"displayName": "Multiple Formatters",
"publisher": "Jota0222",
"version": "1.2.3",
"description": "It allows to use multiple formatters as a composite formatter in just one run in Visual Studio Code",
"repository": {
"url": "https://github.com/jota0222/MultiFormatterVSCode.git"
},
"icon": "image/icon.png",
"main": "./out/extension.js",
"engines": {
"vscode": "^1.75.0"
},
"keywords": [
"formatter",
"vscode",
"multiple",
"multi",
"composite"
],
"categories": [
"Formatters"
],
"scripts": {
"watch": "tsc --watch -p ./",
"build": "tsc && vsce package",
"vscode:prepublish": "tsc"
},
"author": "jota0222",
"license": "GNU GPLv3",
"pricing": "Free",
"contributes": {
"commands": [
{
"command": "multiFormatter.formatSelection",
"title": "MultiFormat Selection"
},
{
"command": "multiFormatter.formatDocument",
"title": "MultiFormat Document"
}
],
"configuration": {
"type": "object",
"title": "Multi Formatter",
"properties": {
"multiFormatter.formatterList": {
"type": "array",
"default": [],
"description": "Ordered list of formatters",
"scope": "language-overridable"
}
}
}
},
"activationEvents": [
"onLanguage:javascript",
"onLanguage:typescript",
"onLanguage:python",
"onLanguage:html",
"onLanguage:scss",
"onLanguage:css",
"onLanguage:vue",
"onLanguage:vue-html",
"onLanguage:vue-postcss",
"onLanguage:javascriptreact",
"onLanguage:typescriptreact",
"onLanguage:haskell",
"onLanguage:php",
"onLanguage:twig",
"onLanguage:markdown",
"onLanguage:rust",
"onLanguage:erb",
"onLanguage:postcss"
],
"devDependencies": {
"@types/vscode": "^1.75.0",
"@vscode/vsce": "^2.19.0",
"typescript": "^4.9.5"
}
}