forked from franneck94/Vscode-Workspace-Formatter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
138 lines (138 loc) · 3.72 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "workspace-formatter",
"displayName": "Workspace Formatter",
"description": "🔧 Format all your files in a workspace with one click. 🔧",
"version": "1.1.0",
"publisher": "franneck94",
"license": "MIT",
"icon": "icon.png",
"galleryBanner": {
"color": "#9c9c9c",
"theme": "dark"
},
"engines": {
"vscode": "^1.86.0"
},
"categories": [
"Formatters"
],
"tags": [
"format",
"workspace"
],
"repository": {
"type": "git",
"url": "https://github.com/franneck94/vscode-Workspace-formatter.git"
},
"homepage": "https://github.com/franneck94/vscode-Workspace-formatter/README.md",
"bugs": {
"url": "https://github.com/franneck94/vscode-Workspace-formatter/issues"
},
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/main",
"contributes": {
"taskDefinitions": [
{
"type": "Workspace_Formatter"
}
],
"commands": [
{
"command": "Workspace_Formatter.runOnWorkspace",
"title": "Run",
"category": "Workspace Formatter"
},
{
"command": "Workspace_Formatter.runOnContextMenu",
"title": "Format Directory",
"category": "Workspace Formatter"
}
],
"menus": {
"explorer/context": [
{
"command": "Workspace_Formatter.runOnContextMenu",
"when": "explorerResourceIsFolder",
"group": "WorkspaceFormatter@1"
}
]
},
"configuration": {
"type": "object",
"title": "Workspace Formatter",
"properties": {
"Workspace_Formatter.includePattern": {
"type": "array",
"default": [
"*"
],
"items": {
"type": "string"
},
"description": "List glob patterns to include for formatting. Note: Include pattern is used before the exclude pattern is applied.",
"scope": "resource"
},
"Workspace_Formatter.excludePattern": {
"type": "array",
"default": [
"**/build",
"**/.*",
"**/.vscode"
],
"items": {
"type": "string"
},
"description": "List glob patterns to exclude for formatting.",
"scope": "resource"
},
"Workspace_Formatter.saveAfterFormat": {
"type": "boolean",
"default": true,
"description": "Whether to save the currently formatted file.",
"scope": "resource"
},
"Workspace_Formatter.closeAfterSave": {
"type": "boolean",
"default": true,
"description": "Whether to close the currently formatted file.",
"scope": "resource"
}
}
}
},
"scripts": {
"webpack": "webpack --mode development",
"webpack-watch": "webpack --mode development --watch",
"vscode:prepublish": "npm run webpack",
"compile": "set NODE_OPTIONS=--openssl-legacy-provider && npm run webpack",
"compile-watch": "npm run webpack-watch",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.0.0",
"@types/node": "^14.0.27",
"@types/vscode": "^1.53.0",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/eslint-plugin-tslint": "^4.20.0",
"@typescript-eslint/parser": "^4.1.1",
"eslint": "^7.9.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^32.3.0",
"glob": "^7.1.6",
"mocha": "^8.1.3",
"prettier": "^2.2.1",
"typescript": "^4.0.2",
"webpack": "^5.28.0",
"webpack-cli": "^4.6.0"
},
"dependencies": {
"minimatch": "^3.0.4",
"ts-loader": "^8.1.0",
"tslint": "^6.1.3",
"vsce": "^1.87.1"
},
"extensionDependencies": []
}