-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.7 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.7 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
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
{
"name": "deepcode",
"version": "0.2.94",
"description": "DeepCode — an agentic coding desktop app powered by DeepSeek. A Claude-Code / Codex style assistant with Plugins, Skills, MCP, Subagents, Hooks, Memory, Automations and Slash Commands.",
"main": "./out/main/index.js",
"author": "Maurice",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "electron-vite dev",
"build": "electron-vite build",
"preview": "electron-vite preview",
"start": "electron-vite preview",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json",
"typecheck": "npm run typecheck:node && npm run typecheck:web",
"package": "electron-vite build && electron-builder",
"package:win": "electron-vite build && electron-builder --win",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint \"src/**/*.{ts,tsx}\" \"test/**/*.{ts,tsx}\" scripts",
"smoke": "electron-vite build && node scripts/ui-smoke.mjs",
"smoke:run": "node scripts/ui-smoke.mjs"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"@xyflow/react": "^12.11.0",
"electron-updater": "^6.8.9",
"highlight.js": "^11.11.1",
"markdown-it": "^14.2.0",
"nodemailer": "^8.0.11"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/markdown-it": "^14.1.2",
"@types/node": "^22.10.0",
"@types/nodemailer": "^8.0.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"electron": "^33.2.0",
"electron-builder": "^25.1.8",
"electron-vite": "^2.3.0",
"eslint": "^10.5.0",
"eslint-plugin-react-hooks": "^7.1.1",
"jsdom": "^29.1.1",
"playwright": "^1.60.0",
"png-to-ico": "^3.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sharp": "^0.35.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.61.1",
"vite": "^5.4.11",
"vitest": "^4.1.8"
},
"build": {
"appId": "com.maurice.deepcode",
"productName": "DeepCode",
"directories": {
"output": "release"
},
"files": [
"out/**/*",
"resources/**/*"
],
"win": {
"target": "nsis",
"icon": "resources/icon.ico"
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "DeepCode"
},
"publish": [
{
"provider": "github",
"owner": "MauricePutinas",
"repo": "deepcode"
}
]
}
}