-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.99 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.99 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
{
"name": "lemonade-sdk",
"publisher": "lemonade-sdk",
"displayName": "Lemonade for GitHub Copilot",
"description": "An extension that integrates Lemonade local LLM server into GitHub Copilot Chat",
"icon": "assets/logo.png",
"repository": {
"type": "git",
"url": "https://github.com/lemonade-sdk/lemonade"
},
"version": "0.0.7",
"engines": {
"vscode": "^1.104.0"
},
"categories": [
"AI",
"Chat"
],
"galleryBanner": {
"color": "#100f11",
"theme": "dark"
},
"badges": [
{
"url": "https://img.shields.io/github/stars/lemonade-sdk/lemonade?style=social",
"description": "Star lemonade on Github",
"href": "https://github.com/lemonade-sdk/lemonade"
}
],
"homepage": "https://github.com/lemonade-sdk/lemonade",
"bugs": {
"url": "https://github.com/lemonade-sdk/lemonade/issues"
},
"license": "MIT",
"contributes": {
"languageModelChatProviders": [
{
"vendor": "lemonade",
"displayName": "Lemonade",
"managementCommand": "lemonade.manage"
}
],
"commands": [
{
"command": "lemonade.manage",
"title": "Manage Lemonade Provider"
}
]
},
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"download-api": "dts dev",
"postdownload-api": "dts main",
"postinstall": "npm run download-api",
"compile": "tsc -p ./",
"lint": "eslint",
"format": "prettier --write .",
"watch": "tsc -watch -p ./",
"test": "pnpm run compile && vscode-test"
},
"dependencies": {},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@stylistic/eslint-plugin": "^2.9.0",
"@types/node": "^22",
"@types/mocha": "^10.0.6",
"@vscode/dts": "^0.4.1",
"@types/vscode": "^1.103.0",
"@vscode/test-cli": "^0.0.11",
"@vscode/test-electron": "^2.5.2",
"eslint": "^9.13.0",
"prettier": "^3.1.0",
"typescript": "^5.9.2",
"typescript-eslint": "^8.39.0"
},
"packageManager": "pnpm@8.15.4+sha512.0bd3a9be9eb0e9a692676deec00a303ba218ba279d99241475616b398dbaeedd11146f92c2843458f557b1d127e09d4c171e105bdcd6b61002b39685a8016b9e"
}