@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.
- package/README.md +186 -0
- package/index.js +13 -0
- package/install.js +218 -0
- package/package.json +35 -0
- package/staging_area/desktop/2024 NEWS LETTER.pdf +52320 -229
- package/staging_area/desktop/2025 all websites/2024 (1).png +0 -0
- package/staging_area/desktop/2025 all websites/2024 (1).webp +0 -0
- package/staging_area/desktop/2025 all websites/2024 (10).png +0 -0
- package/staging_area/desktop/2025 all websites/2024 (2).png +0 -0
- package/staging_area/desktop/2025 all websites/2024 (3).png +0 -0
- package/staging_area/desktop/2025 all websites/2024 (4).png +0 -0
- package/staging_area/desktop/2025 all websites/2024 (5).png +0 -0
- package/staging_area/desktop/2025 all websites/2024 (6).png +0 -0
- package/staging_area/desktop/2025 all websites/2024 (7).png +0 -0
- package/staging_area/desktop/2025 all websites/2024 (8).png +0 -0
- package/staging_area/desktop/2025 all websites/2024 (9).png +0 -0
- package/staging_area/desktop/2025 all websites/package-lock.json +19 -0
- package/staging_area/desktop/2025 all websites/package.json +5 -0
- package/staging_area/desktop/brasnly.png +0 -0
- package/staging_area/desktop/car gaem/Launch_Dubai_3D.bat +21 -0
- package/staging_area/desktop/car gaem/eslint.config.js +29 -0
- package/staging_area/desktop/car gaem/index.html +17 -0
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -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
|
+
}
|
|
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>
|