-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.66 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 3.66 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
{
"name": "NeuroOS",
"private": false,
"version": "1.3.1",
"description": "Neuro OS — Minimalist AI-powered operating system for productivity",
"productName": "Neuro OS",
"author": {
"name": "Loay Abdalslam",
"email": "loay@chatit.cloud",
"url": "https://chatit.cloud"
},
"homepage": "https://github.com/loayabdalslam/NeuroOS",
"license": "SEE LICENSE IN build/license.txt",
"repository": {
"type": "git",
"url": "https://github.com/loayabdalslam/NeuroOS.git"
},
"main": "dist-electron/main.js",
"scripts": {
"dev": "vite",
"build": "tsc && vite build && electron-builder",
"preview": "vite preview",
"clean": "rm -rf dist dist-electron",
"lint": "tsc --noEmit",
"electron": "tsc -p native-shell/tsconfig.json && wait-on http-get://127.0.0.1:5173 && cross-env VITE_DEV_SERVER_URL=http://127.0.0.1:5173 electron .",
"electron:dev": "concurrently -k \"cross-env BROWSER=none npm run dev\" \"npm run electron\"",
"electron:build": "vite build && tsc -p native-shell/tsconfig.json && electron-builder"
},
"build": {
"appId": "cloud.chatit.neuroos",
"productName": "Neuro OS",
"copyright": "Copyright © 2026 Loay Abdalslam. All rights reserved.",
"directories": {
"output": "release/${version}"
},
"files": [
"dist",
"dist-electron"
],
"win": {
"icon": "build/icon.ico",
"publisherName": "Loay Abdalslam",
"legalTrademarks": "Neuro OS is a trademark of Loay Abdalslam",
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
],
"artifactName": "NeuroOS-Setup-${version}.${ext}"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"installerIcon": "build/icon.ico",
"uninstallerIcon": "build/icon.ico",
"installerHeader": "build/installerHeader.bmp",
"installerHeaderIcon": "build/icon.ico",
"installerSidebar": "build/installerSidebar.bmp",
"uninstallerSidebar": "build/installerSidebar.bmp",
"license": "build/license.txt",
"shortcutName": "Neuro OS",
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"allowElevation": true,
"displayLanguageSelector": false,
"perMachine": true,
"differentialPackage": true,
"deleteAppDataOnUninstall": false,
"runAfterFinish": true
},
"publish": [
{
"provider": "github",
"owner": "loayabdalslam",
"repo": "NeuroOS"
}
]
},
"dependencies": {
"@google/genai": "^1.29.0",
"@tailwindcss/vite": "^4.1.14",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react": "^5.0.4",
"better-sqlite3": "^12.6.2",
"clsx": "^2.1.1",
"composio-core": "^0.5.39",
"date-fns": "^4.1.0",
"dotenv": "^17.2.3",
"electron-updater": "^6.8.3",
"express": "^4.21.2",
"lucide-react": "^0.546.0",
"motion": "^12.23.24",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^16.1.1",
"react-use-measure": "^2.1.7",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^3.5.0",
"uuid": "^13.0.0",
"vite": "^6.2.0",
"yahoo-finance2": "^3.13.0",
"zustand": "^5.0.11"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^22.14.0",
"autoprefixer": "^10.4.21",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"electron": "^30.0.0",
"electron-builder": "^26.8.1",
"tailwindcss": "^4.1.14",
"tsx": "^4.21.0",
"typescript": "~5.8.2",
"vite": "^6.2.0",
"wait-on": "^9.0.4"
}
}