-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
141 lines (141 loc) · 3.86 KB
/
package.json
File metadata and controls
141 lines (141 loc) · 3.86 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
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
139
140
141
{
"name": "RepoTree",
"displayName": "Repo Tree",
"description": "Generate a tree from the current directory and files",
"publisher": "Sang-Buster",
"version": "0.1.0",
"engines": {
"vscode": "^1.60.0"
},
"icon": "img/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/Sang-Buster/RepoTree"
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test": "node --no-warnings ./out/test/runTest.js",
"lint": "tslint -p tsconfig.json",
"format": "prettier --write \"src/**/*.ts\""
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.generateTree"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "extension.generateTree",
"title": "RepoTree: Generate to Tree"
}
],
"menus": {
"explorer/context": [
{
"when": "explorerResourceIsFolder",
"command": "extension.generateTree",
"group": "cmdGroup@1"
}
]
},
"configuration": {
"title": "RepoTree",
"properties": {
"RepoTree.exclude": {
"type": "object",
"description": "Configure glob patterns for excluding files and folders from the generated file tree. Each entry is a glob pattern with a boolean value indicating whether to exclude.",
"additionalProperties": {
"type": "boolean"
},
"default": {
"**/.git": true,
"**/__pycache__": true,
"**/.ruff_cache": true,
"**/.pytest_cache": true,
"**/node_modules": true,
"**/dist": true,
"**/build": true,
"**/out": true,
"**/.vscode": true,
"**/.idea": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"**/coverage": true,
"**/logs": true,
"**/*.log": true,
"**/.env": true,
"**/.venv": true,
"**/bower_components": true,
"**/jspm_packages": true,
"**/.cache": true,
"**/target": true,
"**/bin": true,
"**/obj": true
},
"scope": "resource"
},
"RepoTree.respectWorkspaceExcludeSettings": {
"type": "boolean",
"default": false,
"description": "When enabled, files and folders excluded by VS Code's built-in files.exclude setting will also be excluded from the generated tree."
},
"RepoTree.respectGitignore": {
"type": "boolean",
"default": false,
"description": "When enabled, files and folders listed in the .gitignore file will be excluded from the generated tree."
},
"RepoTree.addComments": {
"type": "boolean",
"default": false,
"description": "When enabled, comments will be added to the right of each file/folder in the generated tree."
},
"RepoTree.commentSymbol": {
"type": "string",
"default": "//",
"description": "Symbol to use for comments in the generated tree."
},
"RepoTree.commentDistance": {
"type": "number",
"default": 4,
"minimum": 4,
"description": "The minimum distance between the file/folder name and the comment."
},
"RepoTree.treeDistance": {
"type": "number",
"default": 1,
"minimum": 1,
"description": "Controls the spacing between tree branches. Higher values make the tree look more spread out, lower values make it more consolidated."
}
}
}
},
"devDependencies": {
"@types/mocha": "^9.1.0",
"@types/node": "^16.11.7",
"@types/vscode": "^1.60.0",
"@vscode/test-electron": "^2.1.3",
"mocha": "^9.2.0",
"prettier": "^3.5.3",
"tslint": "^5.20.1",
"typescript": "^4.9.5"
},
"__metadata": {
"id": "43d92103-c3bd-4f6f-9ac0-b36f4c583346",
"publisherId": "59c31d82-a4bd-4079-951b-014962453064",
"publisherDisplayName": "Sang-Buster",
"targetPlatform": "undefined",
"updated": false,
"isPreReleaseVersion": false,
"hasPreReleaseVersion": false,
"installedTimestamp": 1708666464126,
"size": 2250421
},
"dependencies": {
"glob": "^11.0.1"
}
}