-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1003 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 1003 Bytes
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
{
"name": "llmify",
"displayName": "Llmify",
"description": "Convert selected folders and files to markdown for LLM consumption",
"version": "1.0.1",
"publisher": "AmirrezaBadpa",
"icon": "icon.png",
"author": {
"name": "Amirreza Badpa"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ItzAmirreza/llmify.git"
},
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished",
"onCommand:llmify.openPicker"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "llmify.openPicker",
"title": "Llmify: Export to Markdown"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"lint": "eslint src --ext ts"
},
"devDependencies": {
"@types/node": "^18.0.0",
"@types/vscode": "^1.74.0",
"typescript": "^5.0.0"
}
}