-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.11 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.11 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
{
"name": "deepseek-linux",
"version": "1.0.2",
"description": "A simple and efficient desktop client for DeepSeek.",
"main": "src/main.js",
"type": "module",
"scripts": {
"start": "electron .",
"dist": "electron-builder --linux snap",
"lint": "eslint src/**/*.js",
"format": "prettier --write \"**/*.{js,json,md}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/evildevill/deepseek-linux.git"
},
"keywords": [
"electron",
"deepseek",
"desktop",
"linux"
],
"author": "evildevill",
"license": "ISC",
"bugs": {
"url": "https://github.com/evildevill/deepseek-linux/issues"
},
"homepage": "https://github.com/evildevill/deepseek-linux#readme",
"dependencies": {
"electron-context-menu": "^4.1.1"
},
"devDependencies": {
"electron": "^40.2.1",
"electron-builder": "^26.7.0",
"eslint": "^9.15.0",
"prettier": "^3.4.2"
},
"build": {
"productName": "DeepSeek",
"appId": "com.evildevill.deepseeklinux",
"linux": {
"target": "snap",
"icon": "assets/icon.png",
"category": "Utility"
}
}
}