-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
120 lines (120 loc) · 3.65 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
{
"name": "talon-filetree",
"displayName": "talon-filetree",
"publisher": "PaulSchaaf",
"description": "An extension for navigating and manipulating the file tree quickly by voice",
"version": "0.6.9",
"repository": {
"type": "git",
"url": "https://github.com/paul-schaaf/talon-filetree"
},
"engines": {
"vscode": "^1.70.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"configuration": {
"title": "talon-filetree",
"properties": {
"talon-filetree.letterStyling": {
"type": "string",
"default": "lowercase",
"enum": [
"lowercase",
"uppercase",
"emoji"
]
},
"talon-filetree.hintPosition": {
"type": "string",
"default": "right",
"enum": [
"left",
"right"
]
},
"talon-filetree.hintSeparator": {
"type": "string",
"default": "brackets",
"description": "Characters to separate the hint from the file or folder name (only applies when hints are positioned to the left)",
"enum": [
"brackets",
"pipe",
"hyphen",
"colon",
"spaces"
],
"enumDescriptions": [
"[a] file.ext",
"a | file.ext",
"a - file.ext",
"a: file.text",
"a file.text"
]
}
}
},
"viewsContainers": {
"activitybar": [
{
"id": "filetree",
"title": "File Tree",
"icon": "filetree.png"
}
]
},
"views": {
"filetree": [
{
"id": "filetree",
"name": "File Tree",
"contextualTitle": "File Tree"
}
]
},
"viewsWelcome": [
{
"view": "filetree",
"contents": "No folder opened. Open a folder to show its tree."
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"package": "vsce package",
"publish": "vsce publish",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js",
"prettier": "npx prettier --write ."
},
"devDependencies": {
"@types/lodash": "^4.14.194",
"@types/mocha": "^10.0.1",
"@types/node": "16.x",
"@types/vscode": "^1.70.0",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"@vscode/test-electron": "^2.3.0",
"eslint": "^8.36.0",
"glob": "^8.1.0",
"mocha": "^10.2.0",
"prettier": "2.8.7",
"typescript": "^4.9.5"
},
"extensionDependencies": [
"sleistner.vscode-fileutils"
],
"dependencies": {
"assert-never": "^1.2.1",
"lodash": "^4.17.21",
"minimatch": "^9.0.1",
"simple-git": "^3.17.0"
}
}