-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.19 KB
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
{
"publisher": "Em-Vi",
"name": "edna-v1",
"displayName": "Edna V1",
"description": "VS Code extension using Ollama with DeepSeek",
"version": "0.0.1",
"type": "commonjs",
"engines": {
"vscode": "^1.84.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:edna-v1.helloWorld",
"onStartupFinished"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "edna-v1.helloWorld",
"title": "Open Edna Chat"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"watch:tsc": "tsc --watch",
"watch:esbuild": "esbuild src/index.ts --outdir=dist --bundle --watch",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "^16.18.34",
"@types/node-fetch": "^2.6.12",
"@types/vscode": "^1.84.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"esbuild": "^0.25.0",
"eslint": "^8.39.0",
"typescript": "^5.0.4"
},
"dependencies": {
"ollama": "latest"
}
}