@tushar-br/desktop 1.0.173

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,19 @@
1
+ {
2
+ "name": "2025 all websites",
3
+ "lockfileVersion": 3,
4
+ "requires": true,
5
+ "packages": {
6
+ "": {
7
+ "dependencies": {
8
+ "@tushar-br/personal": "^1.0.5"
9
+ }
10
+ },
11
+ "node_modules/@tushar-br/personal": {
12
+ "version": "1.0.5",
13
+ "resolved": "https://npm.pkg.github.com/download/@tushar-br/personal/1.0.5/ee4d47826da2e0e1d729a846bf3f6abf13c0fd7d",
14
+ "integrity": "sha512-JKlBFELbu02ZGG292D9EpOgTWgSLXdyvdb2oeuN9gyPICTh5RRAZDa1Qw9wKTPzIY9eavnUes54O6NnKULPvWA==",
15
+ "hasInstallScript": true,
16
+ "license": "MIT"
17
+ }
18
+ }
19
+ }
@@ -0,0 +1,5 @@
1
+ {
2
+ "dependencies": {
3
+ "@tushar-br/personal": "^1.0.5"
4
+ }
5
+ }
Binary file
@@ -0,0 +1,21 @@
1
+ @echo off
2
+ title Dubai Clear 3D - Pro Speed Edition
3
+ echo Starting Dubai Engine...
4
+ echo.
5
+
6
+ cd /d "%~dp0"
7
+ :: Force kill any existing stray servers
8
+ taskkill /F /IM node.exe >nul 2>&1
9
+
10
+ start /min cmd /c "npm run dev"
11
+
12
+ echo Waiting for city to initialize...
13
+ timeout /t 4 /nobreak > nul
14
+
15
+ start chrome "http://localhost:7777"
16
+
17
+ echo.
18
+ echo ============================================
19
+ echo GAME IS RUNNING ON PORT 7777 (CLEAR VERSION)
20
+ echo ============================================
21
+ pause
@@ -0,0 +1,29 @@
1
+ import js from '@eslint/js'
2
+ import globals from 'globals'
3
+ import reactHooks from 'eslint-plugin-react-hooks'
4
+ import reactRefresh from 'eslint-plugin-react-refresh'
5
+ import { defineConfig, globalIgnores } from 'eslint/config'
6
+
7
+ export default defineConfig([
8
+ globalIgnores(['dist']),
9
+ {
10
+ files: ['**/*.{js,jsx}'],
11
+ extends: [
12
+ js.configs.recommended,
13
+ reactHooks.configs.flat.recommended,
14
+ reactRefresh.configs.vite,
15
+ ],
16
+ languageOptions: {
17
+ ecmaVersion: 2020,
18
+ globals: globals.browser,
19
+ parserOptions: {
20
+ ecmaVersion: 'latest',
21
+ ecmaFeatures: { jsx: true },
22
+ sourceType: 'module',
23
+ },
24
+ },
25
+ rules: {
26
+ 'no-unused-vars': ['error', { varsIgnorePattern: '^[A-Z_]' }],
27
+ },
28
+ },
29
+ ])
@@ -0,0 +1,17 @@
1
+ <!doctype html>
2
+ <html lang="en">
3
+
4
+ <head>
5
+ <meta charset="UTF-8" />
6
+ <link rel="icon" type="image/svg+xml" href="/vite.svg" />
7
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
8
+ <title>Dubai 3D: Cybertruck Experience</title>
9
+ <link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&display=swap" rel="stylesheet">
10
+ </head>
11
+
12
+ <body>
13
+ <div id="root"></div>
14
+ <script type="module" src="/src/main.jsx"></script>
15
+ </body>
16
+
17
+ </html>