-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.24 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.24 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
{
"name": "privatemode-vscode",
"publisher": "edgeless-systems",
"displayName": "Privatemode AI for GitHub Copilot",
"description": "Privatemode confidential inference for GitHub Copilot Chat",
"icon": "assets/logo.png",
"repository": {
"type": "git",
"url": "https://github.com/edgelesssys/privatemode-vscode"
},
"version": "0.3.0",
"preview": true,
"engines": {
"vscode": "^1.116.0"
},
"categories": [
"AI",
"Chat"
],
"galleryBanner": {
"color": "#100f11",
"theme": "dark"
},
"badges": [
{
"url": "https://img.shields.io/github/stars/edgelesssys/privatemode-vscode?style=social",
"description": "Star privatemode-vscode on Github",
"href": "https://github.com/edgelesssys/privatemode-vscode"
},
{
"url": "https://img.shields.io/twitter/follow/EdgelessSystems?style=social",
"description": "Follow Edgeless Systems on X",
"href": "https://x.com/EdgelessSystems"
}
],
"homepage": "https://docs.privatemode.ai/",
"bugs": {
"url": "https://github.com/edgelesssys/privatemode-vscode/issues"
},
"license": "MIT",
"contributes": {
"languageModelChatProviders": [
{
"vendor": "privatemode",
"displayName": "Privatemode",
"managementCommand": "privatemode.manage"
}
],
"commands": [
{
"command": "privatemode.manage",
"title": "Set Privatemode API Key"
},
{
"command": "privatemode.test",
"title": "Test Privatemode Extension"
}
]
},
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint",
"format": "prettier --write .",
"watch": "tsc -watch -p ./",
"test": "npm run compile && vscode-test",
"package": "vsce package -o privatemode-vscode.vsix --readme-path marketplace-readme.md",
"install:local": "code --install-extension privatemode-vscode.vsix"
},
"dependencies": {
"tiktoken": "^1.0.22"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/mocha": "^10.0.10",
"@types/node": "^25.6.0",
"@types/vscode": "^1.116.0",
"@vscode/test-cli": "^0.0.12",
"@vscode/test-electron": "^2.5.2",
"@vscode/vsce": "^3.9.0",
"eslint": "^10.2.0",
"prettier": "^3.8.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.58.2"
}
}