forked from andrewc512/Intellitex
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.28 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
{
"name": "intellitex",
"version": "0.1.0",
"description": "LaTeX IDE with AI agent",
"main": "electron/main.js",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"electron:dev": "concurrently \"vite\" \"wait-on http://localhost:5173 && electron .\"",
"electron:build": "npm run build && electron-builder"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@vitejs/plugin-react": "^4.2.0",
"concurrently": "^8.2.0",
"electron": "^40.6.1",
"electron-builder": "^26.8.1",
"typescript": "^5.3.0",
"vite": "^7.3.1",
"wait-on": "^7.2.0"
},
"dependencies": {
"@monaco-editor/react": "^4.7.0",
"dotenv": "^17.3.1",
"openai": "^4.0.0",
"pdfjs-dist": "^5.4.624",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^9.0.1",
"react-resizable-panels": "^2.0.0",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.0"
},
"build": {
"appId": "com.intellitex.app",
"productName": "IntelliTex",
"directories": {
"output": "release"
},
"files": [
"dist",
"electron"
],
"mac": {
"icon": "public/icons/intellitex.icns"
}
}
}