-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
147 lines (147 loc) · 4.36 KB
/
package.json
File metadata and controls
147 lines (147 loc) · 4.36 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"name": "graphy",
"version": "0.1.0",
"description": "Graphy desktop application",
"author": {
"name": "ntgrm",
"email": "contact@graphy.dev"
},
"private": true,
"type": "module",
"main": "electron/main.cjs",
"imports": {
"#/*": "./src/*"
},
"scripts": {
"dev": "concurrently -k -n parser,tanstack,electron -c yellow,cyan,magenta \"bun --bun run dev:parser\" \"vite dev --port 3000\" \"wait-on http://localhost:3000 && cross-env ELECTRON_START_URL=http://localhost:3000 electron .\"",
"dev:electron": "wait-on http://localhost:3000 && cross-env ELECTRON_START_URL=http://localhost:3000 electron .",
"dev:parser": "bun run scripts/build-parser.ts --watch",
"build": "bun --bun run build:parser && vite build",
"build:parser": "bun run scripts/build-parser.ts",
"start:desktop": "bun --bun run build && electron .",
"lint": "eslint",
"format": "prettier --write --log-level warn . && eslint --fix",
"check": "prettier --check --log-level warn .",
"tidy": "bun --bun run format && bun --bun run lint",
"dist:linux": "bun --bun run build && electron-builder --linux",
"dist:mac": "bun --bun run build && electron-builder --mac",
"dist:win": "bun --bun run build && electron-builder --win",
"parser:dump": "bun run src/modules/parser/dump.ts"
},
"build": {
"appId": "com.ntgrm.graphy",
"productName": "Graphy",
"files": [
".output/**/*",
"dist-electron/**/*",
"electron/**/*",
"package.json"
],
"directories": {
"output": "release",
"buildResources": "build"
},
"asar": true,
"linux": {
"target": [
"AppImage",
"deb"
],
"category": "Utility",
"artifactName": "${productName}-${version}-${arch}.${ext}"
},
"mac": {
"target": [
{
"target": "dmg",
"arch": [
"x64",
"arm64"
]
}
],
"category": "public.app-category.utilities",
"artifactName": "${productName}-${version}-${arch}.${ext}"
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
],
"artifactName": "${productName}-${version}-${arch}.${ext}"
}
},
"dependencies": {
"@anthropic-ai/sdk": "^0.97.1",
"@base-ui/react": "^1.5.0",
"@codemirror/autocomplete": "^6.20.2",
"@codemirror/commands": "^6.10.3",
"@codemirror/lang-javascript": "^6.2.5",
"@codemirror/language": "^6.12.3",
"@codemirror/language-data": "^6.5.2",
"@codemirror/state": "^6.6.0",
"@codemirror/theme-one-dark": "^6.1.3",
"@codemirror/view": "^6.43.0",
"@dagrejs/dagre": "^3.0.0",
"@fontsource-variable/geist": "^5.2.9",
"@openai/codex-sdk": "^0.132.0",
"@tailwindcss/vite": "^4.3.0",
"@tanstack/react-devtools": "^0.10.5",
"@tanstack/react-router": "^1.170.4",
"@tanstack/react-router-devtools": "^1.167.0",
"@tanstack/react-router-ssr-query": "^1.167.0",
"@tanstack/react-start": "^1.168.6",
"@tanstack/router-plugin": "^1.168.6",
"@xyflow/react": "^12.10.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"lucide-react": "^1.16.0",
"next-themes": "^0.4.6",
"nitro": "npm:nitro-nightly@^3.0.1-20260519-181425-9cc59cf7",
"radix-ui": "^1.4.3",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-markdown": "^10.1.0",
"react-resizable-panels": "^4.11.1",
"remark-gfm": "^4.0.1",
"shadcn": "^4.7.0",
"simple-git": "^3.36.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.0",
"ts-morph": "^28.0.0",
"tw-animate-css": "^1.4.0"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.19",
"@tanstack/devtools-vite": "^0.7.0",
"@tanstack/eslint-config": "^0.4.0",
"@types/node": "^25.9.1",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.2",
"chokidar": "^5.0.0",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"electron": "^42.2.0",
"electron-builder": "^26.8.1",
"eslint": "^10.4.0",
"jsdom": "^29.1.1",
"prettier": "^3.8.3",
"typescript": "^6.0.3",
"vite": "^8.0.13",
"vitest": "^4.1.7",
"wait-on": "^9.0.10"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"lightningcss"
]
}
}