-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.06 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.06 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
{
"name": "ignored-files",
"displayName": "Ignored files",
"version": "0.0.1",
"description": "Retrieve list of files ignored/included by Git, NPM, Yarn, JSR, VSCE or other tools.",
"categories": [
"Other",
"SCM Providers"
],
"license": "MIT",
"author": "Mopsgamer",
"publisher": "Mopsgamer",
"repository": {
"type": "git",
"url": "git://github.com/Mopsgamer/ignored-files.git"
},
"type": "module",
"main": "./dist/extension.cjs",
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "npm run check-types && npm run lint && npm run fmt && node esbuild.js",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node esbuild.js --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"package": "npm run check-types && npm run lint && node esbuild.js --production",
"vsix": "vsce package --packageManager npm",
"check-types": "tsgo --noEmit",
"lint": "oxlint",
"fmt": "oxfmt"
},
"dependencies": {
"ms": "^2.1.3",
"view-ignored": "^0.10.0"
},
"devDependencies": {
"@types/ms": "^2.1.0",
"@types/node": "^20.19.33",
"@types/vscode": "^1.107.0",
"@typescript/native-preview": "^7.0.0-dev.20260224.1",
"@vscode/test-electron": "^2.5.2",
"esbuild": "^0.27.1",
"npm-run-all": "^4.1.5",
"oxfmt": "^0.35.0",
"oxlint": "^1.43.0",
"typescript": "^6.0.0-beta"
},
"contributes": {
"commands": [
{
"title": "Clear decorations",
"command": "ignoredFiles.scan.clear",
"category": "Ignored Files"
},
{
"title": "Scan decorations",
"command": "ignoredFiles.scan",
"category": "Ignored Files"
},
{
"title": "Explain ignoring reasons",
"command": "ignoredFiles.explain",
"category": "Ignored Files",
"enablement": "filesExplorerFocus && foldersViewVisible && !explorerResourceIsRoot"
}
],
"menus": {
"explorer/context": [
{
"command": "ignoredFiles.explain",
"group": "explainignoring",
"when": "filesExplorerFocus && foldersViewVisible && !explorerResourceIsRoot"
}
]
}
},
"activationEvents": [],
"engines": {
"vscode": "^1.107.0"
}
}