-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.52 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.52 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
{
"name": "chainlearn-ai",
"private": true,
"version": "1.0.0",
"type": "module",
"main": "electron/main.cjs",
"author": "ChainLearn",
"description": "AI-powered interactive learning platform",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"electron:dev": "concurrently \"vite\" \"wait-on http://localhost:3000 && electron .\"",
"electron:build": "vite build && electron-builder",
"electron:build:win": "vite build && electron-builder --win"
},
"dependencies": {
"@google/genai": "^1.31.0",
"katex": "^0.16.27",
"lucide-react": "^0.556.0",
"react": "^19.2.1",
"react-dom": "^19.2.1"
},
"devDependencies": {
"@types/katex": "^0.16.7",
"@types/node": "^22.14.0",
"@vitejs/plugin-react": "^5.0.0",
"concurrently": "^8.2.2",
"electron": "^33.0.0",
"electron-builder": "^25.1.8",
"typescript": "~5.8.2",
"vite": "^6.2.0",
"wait-on": "^7.2.0"
},
"build": {
"appId": "com.chainlearn.ai",
"productName": "ChainLearn AI",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"electron/**/*",
"logo.png"
],
"win": {
"target": [
{
"target": "nsis",
"arch": ["x64"]
}
],
"icon": "logo.png"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "ChainLearn AI"
}
}
}