mirror of
https://github.com/AeThex-Corporation/AeThex-OS.git
synced 2026-04-18 06:17:21 +00:00
- ModuleManager: Central tracking for installed marketplace modules - DataAnalyzerWidget: Real-time CPU/RAM/Battery/Storage widget (unlocked by Data Analyzer module) - BottomNavBar: Navigation bar for Projects/Chat/Marketplace/Settings - RootShell: Real root command execution utility - TerminalActivity: Full root shell with neofetch, sysinfo, real Linux commands - Terminal Pro module: Adds aliases (ll, la, h), command history - ArcadeActivity + SnakeGame: Pixel Arcade module unlocks retro games - fade_in/fade_out animations for smooth transitions
80 lines
2.3 KiB
JSON
80 lines
2.3 KiB
JSON
{
|
|
"name": "aethex-connect",
|
|
"version": "1.0.0",
|
|
"description": "Next-generation communication platform for gamers with blockchain identity, real-time messaging, voice/video calls, and premium subscriptions",
|
|
"private": true,
|
|
"workspaces": [
|
|
"packages/core",
|
|
"packages/ui",
|
|
"packages/web"
|
|
],
|
|
"main": "src/backend/server.js",
|
|
"scripts": {
|
|
"start": "node src/backend/server.js",
|
|
"build": "cd src/frontend && npm install && npm run build",
|
|
"dev": "nodemon src/backend/server.js",
|
|
"migrate": "node src/backend/database/migrate.js",
|
|
"test": "jest",
|
|
"frontend:dev": "cd src/frontend && npm run dev",
|
|
"frontend:build": "cd src/frontend && npm run build",
|
|
"packages:install": "npm install --workspaces",
|
|
"packages:build": "npm run build --workspaces --if-present",
|
|
"ui:build": "npm run build -w @aethex/ui",
|
|
"web:dev": "npm run dev -w @aethex/web",
|
|
"web:build": "npm run build -w @aethex/web",
|
|
"mobile:android": "npm run android -w @aethex/mobile",
|
|
"mobile:ios": "npm run ios -w @aethex/mobile",
|
|
"desktop:dev": "npm run dev -w @aethex/desktop",
|
|
"desktop:build": "npm run build -w @aethex/desktop"
|
|
},
|
|
"keywords": [
|
|
"gaming",
|
|
"communication",
|
|
"blockchain",
|
|
"domain-verification",
|
|
"real-time-messaging",
|
|
"webrtc",
|
|
"voice-calls",
|
|
"video-calls",
|
|
"stripe",
|
|
"subscription",
|
|
"gameforge",
|
|
"nexus-engine",
|
|
"aethex"
|
|
],
|
|
"author": "AeThex Corporation",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@supabase/supabase-js": "^2.90.1",
|
|
"bcrypt": "^5.1.1",
|
|
"bcryptjs": "^3.0.3",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.3.1",
|
|
"ethers": "^6.10.0",
|
|
"express": "^4.18.2",
|
|
"express-rate-limit": "^7.1.5",
|
|
"helmet": "^7.1.0",
|
|
"jsonwebtoken": "^9.0.3",
|
|
"pg": "^8.11.3",
|
|
"socket.io": "^4.8.3",
|
|
"socket.io-client": "^4.8.3",
|
|
"stripe": "^14.25.0"
|
|
},
|
|
"devDependencies": {
|
|
"jest": "^29.7.0",
|
|
"nodemon": "^3.0.2",
|
|
"supertest": "^6.3.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0",
|
|
"npm": ">=9.0.0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/AeThex-Corporation/AeThex-Connect.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/AeThex-Corporation/AeThex-Connect/issues"
|
|
},
|
|
"homepage": "https://github.com/AeThex-Corporation/AeThex-Connect#readme"
|
|
}
|