-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (104 loc) · 2.34 KB
/
package.json
File metadata and controls
119 lines (104 loc) · 2.34 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
{
"name": "mapify",
"displayName": "Mapify",
"publisher": "bhargavkallepally",
"description": "Semantic codebase mapping for architecture understanding and AI context generation.",
"version": "0.0.1",
"license": "MIT",
"icon": "icon.png",
"repository": {
"type": "git",
"url": "https://github.com/BHARGAV-RUE/Mapify.git"
},
"engines": {
"vscode": "^1.120.0"
},
"categories": [
"Visualization",
"Programming Languages",
"Other"
],
"keywords": [
"tree",
"ascii",
"architecture",
"codebase",
"semantic",
"ai",
"project-map",
"filesystem",
"developer-tools",
"visualization"
],
"activationEvents": [
"onCommand:mapify.generateMap",
"onCommand:mapify.generateMapFromFolder"
],
"main": "./extension.js",
"files": [
"extension.js",
"tree.js",
"semantics.js",
"README.md",
"LICENSE",
"icon.png"
],
"galleryBanner": {
"color": "#0f172a",
"theme": "dark"
},
"contributes": {
"commands": [
{
"command": "mapify.generateMap",
"title": "Mapify: Generate Project Map"
},
{
"command": "mapify.generateMapFromFolder",
"title": "Mapify: Generate Map from Here"
}
],
"menus": {
"explorer/context": [
{
"command": "mapify.generateMapFromFolder",
"when": "explorerResourceIsFolder",
"group": "navigation"
}
]
},
"configuration": {
"title": "Mapify",
"properties": {
"mapify.maxDepth": {
"type": "number",
"default": 4,
"description": "Maximum folder depth to display"
},
"mapify.showSemanticLabels": {
"type": "boolean",
"default": true,
"description": "Show semantic labels next to folders"
},
"mapify.copyToClipboard": {
"type": "boolean",
"default": true,
"description": "Automatically copy generated maps to clipboard"
}
}
}
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "vscode-test"
},
"devDependencies": {
"@types/vscode": "^1.120.0",
"@types/mocha": "^10.0.10",
"@types/node": "22.x",
"eslint": "^9.39.3",
"@vscode/test-cli": "^0.0.12",
"@vscode/test-electron": "^2.5.2"
}
}