-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.41 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
{
"name": "tree-mapper",
"displayName": "Tree Mapper",
"description": "Generate a complete Markdown snapshot of any folder in your VS Code workspace — including a full directory tree and every file's source code.",
"version": "2.2.1",
"publisher": "MrDeveloperJIS",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other"
],
"keywords": [
"tree",
"snapshot",
"workspace",
"markdown",
"documentation"
],
"icon": "icon.png",
"repository": {
"type": "git",
"url": "https://github.com/MrDeveloperJIS/tree-mapper"
},
"activationEvents": [],
"main": "./src/extension.js",
"contributes": {
"commands": [
{
"command": "tree-mapper.generate",
"title": "Tree Mapper: Generate Snapshot"
}
],
"menus": {
"explorer/context": [
{
"command": "tree-mapper.generate",
"group": "navigation@999",
"when": "explorerResourceIsFolder"
}
]
},
"configuration": {
"title": "Tree Mapper",
"properties": {
"treemapper.defaultIgnorePatterns": {
"type": "array",
"items": { "type": "string" },
"default": [
".tree/",
"node_modules/",
".git/",
"dist/",
"build/",
"**/*.log"
],
"description": "Glob patterns that are unchecked by default in the file picker when generating a snapshot. Users can still check these files individually in the picker. The .tree/ directory is always excluded and cannot be overridden."
},
"treemapper.maxFileSizeKB": {
"type": "number",
"default": 2048,
"description": "Files larger than this (in KB) are excluded from the snapshot even if checked. Default: 2048 KB (2 MB). The count of skipped files appears in the snapshot header."
},
"treemapper.keepLastSnapshots": {
"type": "number",
"default": 10,
"minimum": 1,
"description": "Number of recent snapshots to keep in the .tree/ folder. Oldest are deleted automatically after each run. Default: 10."
}
}
}
},
"scripts": {
"lint": "eslint src",
"package": "vsce package",
"publish": "vsce publish"
},
"dependencies": {
"fast-glob": "^3.3.2",
"ignore": "^5.3.1"
},
"devDependencies": {
"@types/vscode": "^1.85.0"
},
"license": "MIT"
}