-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.35 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.35 KB
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
{
"name": "vs-code-check",
"displayName": "VS Code Check",
"description": "A concise VS Code extension that refreshes Problems diagnostics by loading lintable workspace files on demand",
"version": "1.1.1",
"publisher": "sm18lr88",
"author": {
"name": "sm18lr88"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sm18lr88/VS_Code_Check"
},
"bugs": {
"url": "https://github.com/sm18lr88/VS_Code_Check/issues"
},
"homepage": "https://github.com/sm18lr88/VS_Code_Check#readme",
"icon": "icon.png",
"galleryBanner": {
"color": "#1e1e1e",
"theme": "dark"
},
"engines": {
"vscode": "^1.118.0"
},
"activationEvents": [
"onStartupFinished"
],
"categories": [
"Linters",
"Other"
],
"keywords": [
"lint",
"linter",
"typescript",
"eslint",
"type-check",
"vs code check",
"diagnostics refresh",
"workspace",
"diagnostics"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "vsCodeCheck.checkWorkspace",
"title": "VS Code Check: Check Workspace",
"icon": "$(pulse)"
},
{
"command": "vsCodeCheck.checkFolder",
"title": "VS Code Check: Check Folder",
"icon": "$(folder-opened)"
}
],
"configuration": {
"title": "VS Code Check",
"properties": {
"vsCodeCheck.openConcurrency": {
"type": "number",
"default": 32,
"minimum": 0,
"markdownDescription": "How many files to load in parallel when running VS Code Check. Set to 0 to load all files at once (may freeze VS Code in large workspaces)."
}
}
},
"menus": {
"explorer/context": [
{
"command": "vsCodeCheck.checkFolder",
"when": "explorerResourceIsFolder",
"group": "2_workspace@100"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run build",
"typecheck": "tsc --noEmit",
"build": "tsx esbuild.ts",
"ci": "npm run typecheck && npm run build",
"watch": "tsx esbuild.ts --watch",
"package": "vsce package"
},
"devDependencies": {
"@types/node": "^25.7.0",
"@types/vscode": "^1.118.0",
"@vscode/vsce": "^3.9.1",
"esbuild": "^0.28.0",
"sharp": "^0.34.5",
"tsx": "^4.21.0",
"typescript": "^6.0.3"
}
}