-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.11 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.11 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
{ "name": "codebase-md",
"displayName": "CodebaseMD",
"description": "Export your entire codebase or selected files as a Markdown file.",
"version": "2.0.3",
"publisher": "alpha912",
"engines": {
"vscode": "^1.70.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:codebaseMD.exportAll",
"onCommand:codebaseMD.exportSelected",
"onCommand:codebaseMD.exportMicro",
"onCommand:codebaseMD.exportMicroSelected"
],
"main": "./out/extension.js", "repository": {
"type": "git",
"url": "https://github.com/alpha912/codebase-md.git"
},
"license": "MIT",
"icon": "assets/logo.png",
"contributes": {
"commands": [
{
"command": "codebaseMD.exportAll",
"title": "Export Codebase as Markdown"
},
{
"command": "codebaseMD.exportSelected",
"title": "Export Selected as Markdown"
},
{
"command": "codebaseMD.exportMicro",
"title": "Export Micro Codebase"
},
{
"command": "codebaseMD.exportMicroSelected",
"title": "Export Selected as Micro Codebase"
}
],
"menus": {
"explorer/context": [
{
"command": "codebaseMD.exportSelected",
"when": "explorerResourceIsFolder || resourceFilename",
"group": "navigation"
},
{
"command": "codebaseMD.exportMicroSelected",
"when": "explorerResourceIsFolder || resourceFilename",
"group": "navigation"
}
]
}
}, "scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test-compile": "tsc -p ./ && tsc -p ./src/test/",
"pretest": "npm run test-compile",
"test": "node ./out/test/runTest.js",
"package": "vsce package",
"publish": "vsce publish"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "^16.18.11",
"@types/vscode": "^1.70.0",
"@vscode/test-electron": "^2.5.2",
"glob": "^11.0.2",
"mocha": "^11.4.0",
"typescript": "^4.8.4",
"vsce": "^2.7.0"
},
"dependencies": {
"ignore": "^5.3.2"
}
}