-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.84 KB
/
Copy pathpackage.json
File metadata and controls
121 lines (121 loc) · 3.84 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "split-stock",
"version": "0.0.1",
"description": "박스권 분할매매 방식 N분할 자동매매 클라이언트 (한국투자증권 KIS API)",
"main": "./out/main/index.cjs",
"author": "kimjigoooo",
"license": "UNLICENSED",
"private": true,
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"electron",
"electron-winstaller",
"esbuild",
"@biomejs/biome"
]
},
"scripts": {
"dev": "electron-vite dev",
"predev": "pnpm rebuild:electron",
"build": "pnpm typecheck && electron-vite build",
"prebuild": "pnpm rebuild:electron",
"preview": "electron-vite preview",
"start": "electron-vite preview",
"typecheck": "tsc -b",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"test": "vitest run",
"pretest": "pnpm rebuild:node",
"test:watch": "vitest",
"test:e2e": "playwright test",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"rebuild:node": "pnpm rebuild better-sqlite3",
"rebuild:electron": "electron-rebuild -f -w better-sqlite3",
"rebuild": "pnpm rebuild:electron",
"prepare:electron": "electron-builder install-app-deps",
"build:mac": "pnpm build && electron-builder --mac --config electron-builder.yml",
"build:win": "pnpm build && electron-builder --win --config electron-builder.yml",
"build:linux": "pnpm build && electron-builder --linux --config electron-builder.yml"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.91.1",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@electron-toolkit/preload": "^3.0.2",
"@electron-toolkit/utils": "^4.0.0",
"@floating-ui/react": "^0.27.19",
"@modelcontextprotocol/sdk": "^1.29.0",
"@sentry/electron": "^7.11.0",
"@tanstack/react-query": "^5.99.0",
"@tanstack/react-router": "^1.168.23",
"@tanstack/react-virtual": "^3.13.24",
"@trpc/client": "^11.16.0",
"@trpc/react-query": "^11.16.0",
"@trpc/server": "^11.16.0",
"@upbit-official/upbit-sdk": "^0.9.0",
"adm-zip": "^0.5.17",
"better-sqlite3": "^12.9.0",
"bottleneck": "^2.19.5",
"date-fns": "^4.1.0",
"drizzle-orm": "^0.45.2",
"electron-log": "^5.4.3",
"electron-updater": "^6.8.3",
"framer-motion": "^12.38.0",
"html-entities": "^2.6.0",
"iconv-lite": "^0.7.2",
"indicatorts": "^2.2.2",
"lightweight-charts": "^5.1.0",
"lucide-react": "^1.8.0",
"neverthrow": "^8.2.0",
"openai": "^6.34.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-resizable-panels": "^4.10.0",
"sonner": "^2.0.7",
"string-similarity-js": "^2.1.4",
"superjson": "^2.2.6",
"trpc-electron": "^0.1.2",
"undici": "^8.1.0",
"ws": "^8.20.0",
"zod": "^4.3.6",
"zustand": "^5.0.12"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@biomejs/biome": "^2.4.12",
"@electron/rebuild": "^4.0.3",
"@playwright/test": "^1.59.1",
"@rolldown/plugin-babel": "^0.2.3",
"@tanstack/router-plugin": "^1.167.23",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/adm-zip": "^0.5.8",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.4",
"babel-plugin-react-compiler": "^1.0.0",
"drizzle-kit": "^0.31.10",
"electron": "^41.2.1",
"electron-builder": "^26.8.1",
"electron-vite": "^5.0.0",
"jsdom": "^29.0.2",
"msw": "^2.13.4",
"playwright": "^1.59.1",
"typescript": "^6.0.3",
"vite": "^8.0.8",
"vitest": "^4.1.4"
}
}