-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
101 lines (101 loc) · 2.31 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
93
94
95
96
97
98
99
100
101
{
"name": "codexr",
"displayName": "CodeXR",
"description": "AI code generation and code completion in a breeze.",
"version": "1.0.3",
"license": "MIT",
"preview": true,
"homepage": "https://github.com/cadenmarinozzi/CodeXR#readme",
"icon": "assets/CodeXRLogo.png",
"author": "nekumelon",
"publisher": "nekumelon",
"main": "./src/extension.js",
"repository": {
"type": "git",
"url": "https://github.com/cadenmarinozzi/CodeXR"
},
"keywords": [
"CodeXR",
"Code completion",
"Code generation",
"AI code generation",
"AI code completion",
"OpenAI",
"AI",
"AI code"
],
"engines": {
"vscode": "^1.65.0"
},
"categories": [
"Other",
"Programming Languages",
"Machine Learning"
],
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"configuration": {
"title": "codexr",
"properties": {
"codexr.max_tokens": {
"type": "number",
"default": 250,
"description": "The max tokens to provide for the API"
},
"codexr.supported_languages": {
"type": "array",
"default": ["javascript"],
"description": "The languages to show completions on"
}
}
},
"commands": [
{
"command": "codexr.query",
"title": "Query"
},
{
"command": "codexr.info",
"title": "Info"
}
],
"keybindings": [
{
"command": "codexr.query",
"key": "cmd+enter",
"mac": "cmd+enter"
}
]
},
"scripts": {
"format": "npx prettier --write .",
"lint": "eslint . --ext .js",
"test": "mocha --reporter list",
"vsce-package": "vsce package --out build/CodeXR.vsix",
"vscode:prepublish": "webpack --mode production"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.0",
"@types/node": "14.x",
"@types/vscode": "^1.65.0",
"@vscode/test-electron": "^2.1.2",
"eslint": "^8.12.0",
"glob": "^7.2.0",
"mocha": "^9.2.2",
"webpack": "^5.71.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"axios": "^0.26.1",
"prettier": "^2.6.2",
"tinygradient": "^1.1.5",
"uuid": "^8.3.2"
},
"bugs": {
"url": "https://github.com/cadenmarinozzi/CodeXR/issues",
"email": "[email protected]"
}
}