-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.22 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
{
"name": "Know-Your-Project",
"displayName": "Know Your Project",
"description": "Generate a clean ASCII directory tree structure of your folders with one click for your project readme files.",
"publisher": "pranava-pai-n",
"icon": "./Icon.png",
"version": "1.0.3",
"type" : "module",
"repository": {
"type": "git",
"url": "https://github.com/pranava-pai-n/Know-Your-Project"
},
"engines": {
"vscode": "^1.109.0"
},
"categories": [
"Other",
"Visualization",
"Formatters"
],
"activationEvents": [],
"main": "./extension.js",
"contributes": {
"commands": [{
"command": "know-your-project.getStructure",
"title": "Know Your Project"
}],
"menus": {
"explorer/context": [
{
"command": "know-your-project.getStructure",
"when": "explorerResourceIsFolder",
"group": "navigation"
}
]
}
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "vscode-test"
},
"devDependencies": {
"@types/vscode": "^1.109.0",
"@types/mocha": "^10.0.10",
"@types/node": "22.x",
"eslint": "^9.39.2",
"@vscode/test-cli": "^0.0.12",
"@vscode/test-electron": "^2.5.2"
}
}