-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.26 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
{
"name": "power-code-ai",
"displayName": "Power Code AI",
"description": "write code in seconds with AI",
"publisher": "acebuilds",
"version": "0.1.3",
"engines": {
"vscode": "^1.78.0"
},
"icon": "images/powerCodeAi.png",
"pricing": "Free",
"author": {
"email": "[email protected]",
"name": "Augustine Chinedu Ezeh",
"url": "https://twitter.com/ace_builds"
},
"repository": {
"type": "git",
"url": "https://github.com/Chinedu19/power-code-ai"
},
"categories": [
"Other"
],
"activationEvents": [],
"browser": "./dist/web/extension.js",
"contributes": {
"commands": [
{
"command": "powerCodeAi.updateKey",
"title": "PowerCodeAI: Update Open Ai key"
},
{
"command": "powerCodeAi.generateText",
"title": "PowerCodeAI: Power your code"
},
{
"command": "powerCodeAi.explainThisCode",
"title": "PowerCodeAI: Explain this!"
}
],
"menus": {
"editor/context": [
{
"command": "powerCodeAi.explainThisCode",
"title": "PowerCodeAI: Explain this!"
}
]
}
},
"scripts": {
"test": "vscode-test-web --browserType=chromium --extensionDevelopmentPath=. --extensionTestsPath=dist/web/test/suite/index.js",
"pretest": "yarn run compile-web",
"vscode:prepublish": "yarn run package-web",
"compile-web": "webpack",
"watch-web": "webpack --watch",
"package-web": "webpack --mode production --devtool hidden-source-map",
"lint": "eslint src --ext ts",
"run-in-browser": "vscode-test-web --browserType=chromium --extensionDevelopmentPath=. ."
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/vscode": "^1.78.0",
"@types/webpack-env": "^1.18.0",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"@vscode/test-web": "^0.0.43",
"assert": "^2.0.0",
"eslint": "^8.39.0",
"mocha": "^10.2.0",
"process": "^0.11.10",
"ts-loader": "^9.4.2",
"typescript": "^5.0.4",
"webpack": "^5.81.0",
"webpack-cli": "^5.0.2"
},
"dependencies": {
"@dqbd/tiktoken": "^1.0.7",
"@vscode/iconv-lite-umd": "^0.7.0",
"axios": "^1.4.0",
"keytar": "^7.9.0",
"openai": "^3.2.1"
}
}