forked from coder/picopilot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.27 KB
/
package.json
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
{
"name": "picopilot",
"publisher": "coder",
"displayName": "Picopilot",
"description": "GitHub Copilot in 70 lines of JavaScript.",
"repository": {
"url": "https://github.com/coder/picopilot"
},
"version": "1.0.3",
"engines": {
"vscode": "^1.90.0"
},
"categories": [
"Programming Languages",
"Machine Learning",
"AI"
],
"activationEvents": [
"*"
],
"icon": "./icon.png",
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "picopilot.token",
"title": "Picopilot: Set OpenAI API Key"
}
],
"configuration":[
{
"title": "Picopilot",
"properties": {
"picopilot.prompt": {
"type": "string",
"default": "",
"description": "The prompt to use to generate completions. '{language}' is replaced with the active document language."
}
}
}
]
},
"scripts": {
"build": "webpack --mode production --devtool hidden-source-map",
"watch": "bun run build -- --watch",
"package": "vsce package --allow-star-activation"
},
"devDependencies": {
"@types/vscode": "^1.90.0",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"openai": "^4.52.0"
}
}