-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.85 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "chatgpt-notebooks",
"displayName": "ChatGPT Notebooks",
"description": "Unofficial ChatGPT Notebook Kernel",
"version": "0.1.4",
"author": {
"name": "John Susek"
},
"repository": {
"url": "https://github.com/johnsusek/vscode-chatgpt-notebooks.git"
},
"engines": {
"vscode": "^1.1.0"
},
"publisher": "JohnSusek",
"icon": "media/icon-dark.png",
"main": "./out/extension.js",
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"commands": [
{
"title": "ChatGPT Notebooks: Select GPT Model",
"command": "chatgpt.selectModel",
"when": "notebookType == chatgpt-notebook"
}
],
"configuration": {
"title": "ChatGPT Notebooks",
"properties": {
"chatGPT.characterThreshold": {
"type": "number",
"default": 100000,
"description": "Character length warning threshold"
},
"chatGPT.selectedModel": {
"type": "string",
"default": "gpt-4",
"description": "GPT model for notebooks",
"enum": [
"gpt-3.5-turbo",
"gpt-4"
]
},
"chatGPT.autoSave": {
"type": "boolean",
"default": true,
"description": "Automatically save the notebook when a response is received."
}
}
},
"notebooks": [
{
"type": "chatgpt-notebook",
"displayName": "ChatGPT Notebook",
"selector": [
{
"filenamePattern": "*.chatgpt"
}
]
}
]
},
"scripts": {
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"@types/vscode": "^1.83.1",
"tslint": "^6.1.3",
"typescript": "^5.2.2",
"vscode": "^1.1.37"
},
"dependencies": {
"axios": "^1.5.1"
}
}