-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.79 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.79 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "vs-ext-deepseek-chat",
"author": {
"name": "Marcel Fitzner",
"email": "info@get-set-alerts.com",
"url": "http://www.get-set-alerts.com"
},
"displayName": "vs-ext-deepseek-chat",
"description": "Chat with local DeepSeek-R1",
"version": "0.0.1",
"engines": {
"vscode": "^1.96.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "vs-ext-deepseek-chat.deepSeekChat",
"title": "Chat with DeepSeek"
}
]
},
"scripts": {
"wp_compile": "webpack --mode development",
"wp_watch": "webpack --mode development --watch",
"wp_package": "webpack --mode production --devtool hidden-source-map",
"check-types": "tsc --noEmit",
"compile": "npm run check-types && node esbuild.js",
"compile-tests": "tsc -p . --outDir out",
"compile_tsc": "tsc -p ./",
"lint": "eslint src",
"package": "npm run check-types && node esbuild.js --production",
"pretest": "npm run compile && npm run lint",
"test": "vscode-test",
"vscode:prepublish": "npm run package",
"vscode:compile": "npm run compile",
"watch": "npm-run-all -p watch:*",
"watch2": "tsc -watch -p ./",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "20.x",
"@types/vscode": "^1.96.0",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"esbuild": "^0.25.2",
"eslint": "^9.16.0",
"npm-run-all": "^4.1.5",
"ts-loader": "^9.5.2",
"typescript": "^5.7.2",
"webpack": "^5.99.5",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"ollama": "^0.5.13"
},
"packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
}