forked from vquelque/vscode_mark_files
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.9 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
{
"name": "markfiles",
"displayName": "Mark Files",
"description": "An extension that allows you to mark files in the file explorer",
"version": "1.0.0",
"publisher": "vquelque",
"engines": {
"vscode": "^1.76.0"
},
"author": {
"name": "vquelque"
},
"categories": [
"Other"
],
"icon": "icon.png",
"activationEvents": ["onStartupFinished"],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "markfiles.markUnmarkFile",
"title": "Mark/Unmark current file"
},
{
"command": "markfiles.reloadFromScopeFile",
"title": "Reload marked files from scope file"
}
],
"menus": {
"explorer/context": [{
"command": "markfiles.markUnmarkFile",
"group": "Mark/Unmark file"
}],
"editor/title/context": [{
"command": "markfiles.markUnmarkFile",
"group": "Mark/Unmark file"
}]
},
"colors": [
{
"id": "markfiles.markedFileColor",
"description": "Color for a marked file",
"defaults": {
"dark": "#7ad108",
"light": "#7ad108"
}
}
],
"configuration": {
"title": "Mark Files",
"properties": {
"markfiles.colorMarkedFile": {
"type": "string",
"markdownDescription": "Choose whether to mark files by adding an icon, changing the color of the file name or both. Customize the color of the filename in the `#workbench.colorCustomizations#` section using the `markfiles.markedFileColor` key",
"default": "icon",
"enum": ["icon", "color", "both"],
"enumDescriptions": [
"Mark files by adding an icon",
"Mark files by changing the color of the file name",
"Mark files by adding an icon and changing the color of the file name"
]
},
"markfiles.markedFileIcon": {
"type": "string",
"description": "Choose the symbol to use for marked files (only unicode character)",
"default": "📌",
"maxLength": 2,
"minLength":1,
"pattern": "[^\\x00-\\x7F]+"
}
}
}
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "yarn run compile && yarn run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/vscode": "^1.76.0",
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.1",
"@types/node": "16.x",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"eslint": "^8.34.0",
"glob": "^8.1.0",
"mocha": "^10.2.0",
"typescript": "^4.9.5",
"@vscode/test-electron": "^2.2.3"
},
"repository": {
"type": "git",
"url": "https://github.com/vquelque/vscode_mark_files.git"
},
"license": "MIT"
}