-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (89 loc) · 2.29 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "arkode",
"displayName": "arkode",
"description": "Code using your voice, fmedia, WhisperAI and ChatGPT",
"version": "0.0.2",
"repository": {
"type": "git",
"url": "https://github.com/redocrepus/arkode.git"
},
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "arkode.dictateCodingRequest",
"title": "Dictate coding request"
}
],
"keybindings": [
{
"command": "arkode.dictateCodingRequest",
"key": "PauseBreak"
}
],
"configuration" : {
"title": "Arkode Configuration",
"properties": {
"arkode.apiKey": {
"type": "string",
"default": "",
"description": "OpenAI API Key"
},
"arkode.fmediaPath": {
"type": "string",
"default": "c:/dev/fmedia",
"description": "Path to fmedia folder"
},
"arkode.whisperPromptFilePath": {
"type": "string",
"default": "",
"description": "Path to the transcription prompt filr for the Whisper API"
},
"arkode.systemMessageFilePath": {
"type": "string",
"default": "",
"description": "Path to the system message file for ChatGPT"
},
"arkode.debugTranscription": {
"type": "string",
"default": "",
"description": "Transcription for debugging"
},
"arkode.model": {
"type": "string",
"default": "gpt-4-1106-preview",
"description": "ChatGPT model"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "vscode-test"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@types/vscode": "^1.85.0",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"@vscode/test-cli": "^0.0.4",
"@vscode/test-electron": "^2.3.8",
"eslint": "^8.54.0",
"typescript": "^5.3.2"
},
"dependencies": {
"openai": "^4.0.0"
}
}