AeThex-OS/temp-connect-extract/AeThex-Connect-main/packages/package.json
MrPiglr b3c308b2c8 Add functional marketplace modules, bottom nav bar, root terminal, arcade games
- 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
2026-02-18 22:03:50 -07:00

31 lines
1.1 KiB
JSON

{
"name": "@aethex/workspace",
"version": "1.0.0",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"dev:web": "npm run dev --workspace=@aethex/web",
"dev:mobile": "npm run start --workspace=@aethex/mobile",
"dev:desktop": "npm run dev --workspace=@aethex/desktop",
"build:all": "npm run build --workspaces",
"build:web": "npm run build --workspace=@aethex/web",
"build:mobile:ios": "npm run build:ios --workspace=@aethex/mobile",
"build:mobile:android": "npm run build:android --workspace=@aethex/mobile",
"build:desktop": "npm run build --workspace=@aethex/desktop",
"test": "npm run test --workspaces",
"lint": "npm run lint --workspaces",
"clean": "npm run clean --workspaces && rm -rf node_modules"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"prettier": "^3.1.1",
"typescript": "^5.3.3"
}
}