-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.44 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.44 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
{
"name": "daemon",
"version": "1.3.0",
"main": "dist-electron/main/index.js",
"description": "Custom Electron IDE for AI-native development",
"author": "nullxnothing",
"license": "MIT",
"private": true,
"debug": {
"env": {
"VITE_DEV_SERVER_URL": "http://127.0.0.1:7777/"
}
},
"type": "module",
"scripts": {
"dev": "vite",
"dev:debug": "powershell -NoProfile -Command \"$env:DAEMON_OPEN_DEVTOOLS='1'; vite\"",
"build": "tsc && vite build",
"typecheck": "tsc --noEmit",
"typecheck:watch": "tsc --noEmit --watch --preserveWatchOutput",
"package": "electron-builder",
"postinstall": "electron-rebuild -f --only better-sqlite3 && electron-rebuild -f --only node-pty",
"rebuild": "electron-rebuild -f --only better-sqlite3 && electron-rebuild -f --only node-pty",
"preview": "vite preview",
"version:patch": "npm version patch --no-git-tag-version",
"version:minor": "npm version minor --no-git-tag-version",
"release": "npm version patch && git push && git push --tags",
"pretest": "vite build --mode=test",
"test": "vitest run"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.80.0",
"@google/genai": "^1.48.0",
"@nirholas/pump-sdk": "1.30.0",
"@solana/spl-token": "^0.4.9",
"@solana/web3.js": "^1.98.4",
"better-sqlite3": "^11.7.0",
"bs58": "^6.0.0",
"chokidar": "^4.0.3",
"electron-updater": "^6.8.3",
"express": "^5.1.0",
"imapflow": "^1.2.18",
"mailparser": "^3.9.6",
"node-pty": "1.1.0",
"nodemailer": "^8.0.4",
"pidusage": "^4.0.1",
"ps-list": "^8.1.1",
"simple-git": "^3.27.0"
},
"devDependencies": {
"@electron/rebuild": "^3.7.1",
"@monaco-editor/react": "^4.7.0",
"@types/better-sqlite3": "^7.6.12",
"@types/bn.js": "^5.2.0",
"@types/express": "^5.0.1",
"@types/mailparser": "^3.4.6",
"@types/nodemailer": "^7.0.11",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.3",
"@xterm/addon-fit": "^0.10.0",
"@xterm/addon-web-links": "^0.11.0",
"@xterm/xterm": "^5.5.0",
"electron": "^33.2.0",
"electron-builder": "^24.13.3",
"monaco-editor": "^0.52.2",
"patch-package": "^8.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^5.4.2",
"vite": "^5.4.11",
"vite-plugin-electron": "^0.29.0",
"vite-plugin-electron-renderer": "^0.14.6",
"vitest": "^2.1.5",
"zustand": "^5.0.3"
}
}