Karan6933 commited on
Commit
05d91af
·
verified ·
1 Parent(s): e3a1aa6

Upload 35 files

Browse files
Dockerfile ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM node:20-slim
2
+
3
+ LABEL maintainer="Project Runner"
4
+ LABEL description="Multi-project runner with tunnel support"
5
+
6
+ ENV DEBIAN_FRONTEND=noninteractive
7
+ ENV PORT=7860
8
+
9
+ RUN apt-get update && apt-get install -y \
10
+ python3 \
11
+ python3-pip \
12
+ python3-venv \
13
+ curl \
14
+ wget \
15
+ git \
16
+ unzip \
17
+ xz-utils \
18
+ && rm -rf /var/lib/apt/lists/*
19
+
20
+ RUN curl -fsSL https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-linux-amd64 -o /usr/local/bin/cloudflared \
21
+ && chmod +x /usr/local/bin/cloudflared \
22
+ && cloudflared --version
23
+
24
+ WORKDIR /opt/render/project/src
25
+
26
+ COPY package*.json ./
27
+ RUN npm ci && npm cache clean --force
28
+
29
+ COPY . .
30
+
31
+ RUN mkdir -p /opt/render/project/src/projects
32
+
33
+ EXPOSE 7860
34
+
35
+ CMD ["node", "server.js"]
Readme.md ADDED
@@ -0,0 +1,111 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Multi-Projects Runner
2
+
3
+ A server that runs multiple projects (Node.js, Python, Go, Rust, etc.) with public tunnel URLs.
4
+
5
+ ## Features
6
+
7
+ - **Multi-language support**: Node.js, Python, Go, Rust, Deno, Static sites
8
+ - **Auto-setup**: Automatically installs dependencies for each project
9
+ - **Tunnel support**: Cloudflare (primary) + ngrok (fallback)
10
+ - **Port management**: Auto-detects available ports
11
+ - **API endpoints**: Start/stop projects via REST API
12
+
13
+ ## Quick Start
14
+
15
+ ### Local Development
16
+
17
+ ```bash
18
+ npm install
19
+ npm run dev
20
+ ```
21
+
22
+ ### Docker
23
+
24
+ ```bash
25
+ docker build -t project-runner .
26
+ docker run -p 10000:10000 \
27
+ -v $(pwd)/projects:/opt/render/project/src/projects \
28
+ project-runner
29
+ ```
30
+
31
+ ### Docker Compose
32
+
33
+ ```bash
34
+ docker-compose up --build
35
+ ```
36
+
37
+ ## Environment Variables
38
+
39
+ | Variable | Default | Description |
40
+ |----------|---------|-------------|
41
+ | `PORT` | 10000 | Server port |
42
+ | `NODE_ENV` | production | Environment mode |
43
+ | `NGROK_AUTHTOKEN` | - | ngrok auth token (optional) |
44
+
45
+ ## API Endpoints
46
+
47
+ | Method | Endpoint | Description |
48
+ |--------|----------|-------------|
49
+ | GET | `/api/projects` | List projects |
50
+ | GET | `/api/projects/:id` | Get project status |
51
+ | POST | `/api/projects/:id/start` | Start project |
52
+ | POST | `/api/projects/:id/stop` | Stop project |
53
+ | GET | `/api/status` | Server status |
54
+
55
+ ## Project Structure
56
+
57
+ Projects should be in the `projects/` directory:
58
+
59
+ ```
60
+ projects/
61
+ ├── project1/ # Node.js (has package.json)
62
+ │ ├── package.json
63
+ │ ├── vite.config.js
64
+ │ └── src/
65
+ ├── project2/ # Python (has main.py)
66
+ │ ├── main.py
67
+ │ └── requirements.txt
68
+ └── project3/ # Go (has go.mod)
69
+ └── main.go
70
+ ```
71
+
72
+ ## Hugging Face Projects
73
+
74
+ You can deploy Hugging Face models and apps in your projects. For Python projects, add `transformers`, `torch`, etc. to your `requirements.txt`.
75
+
76
+ Example project structure for a Hugging Face app:
77
+
78
+ ```
79
+ projects/hf-project/
80
+ ├── main.py # Your Hugging Face app code
81
+ ├── requirements.txt # Include transformers, torch, etc.
82
+ └── model/ # Optional: local model files
83
+ ```
84
+
85
+ To use Hugging Face models, ensure your `requirements.txt` includes:
86
+
87
+ ```
88
+ transformers
89
+ torch
90
+ huggingface_hub
91
+ ```
92
+
93
+ Then, in your `main.py`, you can load and use models like:
94
+
95
+ ```python
96
+ from transformers import pipeline
97
+
98
+ # Example: text generation
99
+ generator = pipeline('text-generation', model='gpt2')
100
+ result = generator("Hello, I'm a language model")
101
+ print(result)
102
+ ```
103
+
104
+ For Streamlit apps with Hugging Face, use the streamlit option.
105
+
106
+ 1. Connect GitHub repo to Render
107
+ 2. Set build command: `npm install`
108
+ 3. Set start command: `node server.js`
109
+ 4. Add environment variables as needed
110
+
111
+ For full setup on Render, use `setup.sh` or deploy via Dockerfile.
docker-compose.yml ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ version: '3.8'
2
+
3
+ services:
4
+ project-runner:
5
+ build: .
6
+ container_name: multi-projects-runner
7
+ ports:
8
+ - "10000:10000"
9
+ volumes:
10
+ - ./projects:/opt/render/project/src/projects
11
+ - project-runner-cache:/root/.npm
12
+ - project-runner-pip:/root/.cache/pip
13
+ environment:
14
+ - NODE_ENV=production
15
+ - PORT=10000
16
+ - NGROK_AUTHTOKEN=${NGROK_AUTHTOKEN:-}
17
+ restart: unless-stopped
18
+ healthcheck:
19
+ test: ["CMD", "curl", "-f", "http://localhost:10000/api/status"]
20
+ interval: 30s
21
+ timeout: 10s
22
+ retries: 3
23
+ start_period: 40s
24
+
25
+ volumes:
26
+ project-runner-cache:
27
+ project-runner-pip:
lib/detector.js ADDED
@@ -0,0 +1,273 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import { readdir, access, constants, readFile, writeFile } from 'node:fs/promises';
2
+ import { join, extname } from 'node:path';
3
+
4
+ async function checkFileExists(filepath) {
5
+ try {
6
+ await access(filepath, constants.F_OK);
7
+ return true;
8
+ } catch {
9
+ return false;
10
+ }
11
+ }
12
+
13
+ async function hasInstallLock(projectPath, type) {
14
+ try {
15
+ const lockPath = join(projectPath, '.project-lock');
16
+ const content = await readFile(lockPath, 'utf-8');
17
+ const locks = JSON.parse(content);
18
+ return locks[type] === true;
19
+ } catch {
20
+ return false;
21
+ }
22
+ }
23
+
24
+ async function setInstallLock(projectPath, type) {
25
+ const lockPath = join(projectPath, '.project-lock');
26
+ let locks = {};
27
+ try {
28
+ const content = await readFile(lockPath, 'utf-8');
29
+ locks = JSON.parse(content);
30
+ } catch {}
31
+ locks[type] = true;
32
+ await writeFile(lockPath, JSON.stringify(locks, null, 2));
33
+ }
34
+
35
+ async function clearInstallLock(projectPath, type) {
36
+ const lockPath = join(projectPath, '.project-lock');
37
+ let locks = {};
38
+ try {
39
+ const content = await readFile(lockPath, 'utf-8');
40
+ locks = JSON.parse(content);
41
+ } catch {}
42
+ if (locks[type]) {
43
+ delete locks[type];
44
+ await writeFile(lockPath, JSON.stringify(locks, null, 2));
45
+ }
46
+ }
47
+
48
+ async function hasStreamlit(projectPath) {
49
+ try {
50
+ const reqPath = join(projectPath, 'requirements.txt');
51
+ const content = await readFile(reqPath, 'utf-8');
52
+ return content.includes('streamlit');
53
+ } catch {
54
+ return false;
55
+ }
56
+ }
57
+
58
+ function detectPort(output) {
59
+ const patterns = [
60
+ /Local:\s+(?:https?:\/\/)?(?:[^:\s]+):(\d{4,5})/i,
61
+ /Local:\s+.*?(https?:\/\/)?[^:\s]+:(\d{4,5})/i,
62
+ /(?:localhost|127\.0\.0\.1|0\.0\.0\.0):(\d{4,5})/i,
63
+ /(?:port|listening on|running on)\s*[:=]?\s*(?:https?:\/\/)?(?:[^:\s]+:)?(\d{4,5})/i,
64
+ /\*\s+Running on.*:(\d{4,5})/i,
65
+ /You can now view your.*at.*:(\d{4,5})/i,
66
+ /Local URL:.*:(\d{4,5})/i,
67
+ /port\s*(\d{4,5})/i,
68
+ /PORT\s*(\d{4,5})/i,
69
+ /server.*(?:port|addr|address).*?(\d{4,5})/i
70
+ ];
71
+
72
+ for (const pattern of patterns) {
73
+ const match = output.match(pattern);
74
+ if (match) {
75
+ return match[1] || match[2] || match[3];
76
+ }
77
+ }
78
+
79
+ return null;
80
+ }
81
+
82
+ const LANGUAGE_CONFIGS = {
83
+ nodejs: {
84
+ files: ['package.json'],
85
+ setup: async (projectPath, execAsync) => {
86
+ const nodeModulesPath = join(projectPath, 'node_modules');
87
+ const viteBin = join(projectPath, 'node_modules', '.bin', 'vite');
88
+ const hasNodeModules = await checkFileExists(nodeModulesPath);
89
+ const hasViteBin = await checkFileExists(viteBin);
90
+
91
+ if (!hasNodeModules || !hasViteBin) {
92
+ console.log(`[nodejs] Installing dependencies in ${projectPath}...`);
93
+ try {
94
+ await execAsync('npm install --include=dev', { cwd: projectPath });
95
+ console.log(`[nodejs] Dependencies installed successfully`);
96
+ } catch (error) {
97
+ console.error(`[nodejs] npm install failed:`, error.message);
98
+ throw error;
99
+ }
100
+ }
101
+ },
102
+ start: (projectPath, port) => {
103
+ const viteBin = join(projectPath, 'node_modules', '.bin', 'vite');
104
+ return {
105
+ command: 'node',
106
+ args: [viteBin, '--port', port, '--host', '0.0.0.0'],
107
+ cwd: projectPath,
108
+ env: { ...process.env, PORT: port, HOST: '0.0.0.0' }
109
+ };
110
+ },
111
+ detectPort
112
+ },
113
+ python: {
114
+ files: ['main.py', 'app.py', 'server.py', 'requirements.txt'],
115
+ setup: async (projectPath, execAsync, isStreamlit = false) => {
116
+ const venvPath = join(projectPath, 'venv');
117
+ const venvActivate = join(projectPath, 'venv', 'bin', 'activate');
118
+ const venvPython = join(projectPath, 'venv', 'bin', 'python');
119
+ const venvStreamlit = join(projectPath, 'venv', 'bin', 'streamlit');
120
+ const hasVenv = await checkFileExists(venvPath);
121
+ const hasVenvPython = await checkFileExists(venvPython);
122
+ const hasVenvStreamlit = await checkFileExists(venvStreamlit);
123
+ const reqPath = join(projectPath, 'requirements.txt');
124
+ const hasReq = await checkFileExists(reqPath);
125
+ const hasLock = await hasInstallLock(projectPath, 'pip');
126
+
127
+ const shouldDetectStreamlit = isStreamlit || await hasStreamlit(projectPath);
128
+ const needsSetup = !hasVenv || !hasVenvPython || (shouldDetectStreamlit && !hasVenvStreamlit) || !hasLock;
129
+
130
+ if (needsSetup) {
131
+ if (!hasVenv || !hasVenvPython) {
132
+ console.log(`[python] Creating virtual environment...`);
133
+ await execAsync('python3 -m venv venv', { cwd: projectPath });
134
+ }
135
+
136
+ if (hasReq) {
137
+ console.log(`[python] Installing requirements...`);
138
+ await execAsync('source venv/bin/activate && pip install --break-system-packages -r requirements.txt', {
139
+ cwd: projectPath,
140
+ shell: '/bin/bash'
141
+ });
142
+ } else if (shouldDetectStreamlit && !hasVenvStreamlit) {
143
+ console.log(`[python] Installing streamlit...`);
144
+ await execAsync('source venv/bin/activate && pip install --break-system-packages streamlit flask fastapi', {
145
+ cwd: projectPath,
146
+ shell: '/bin/bash'
147
+ });
148
+ }
149
+
150
+ await setInstallLock(projectPath, 'pip');
151
+ console.log(`[python] Python environment ready`);
152
+ }
153
+ },
154
+ start: (projectPath, port, isStreamlit = false) => {
155
+ const shouldDetectStreamlit = isStreamlit;
156
+ let cmd;
157
+
158
+ if (shouldDetectStreamlit) {
159
+ cmd = `source venv/bin/activate && streamlit run main.py --server.port ${port} --server.address 0.0.0.0 --server.headless true`;
160
+ } else {
161
+ cmd = `source venv/bin/activate && python main.py`;
162
+ }
163
+
164
+ return {
165
+ command: 'bash',
166
+ args: ['-c', cmd],
167
+ cwd: projectPath,
168
+ env: { ...process.env, PORT: port }
169
+ };
170
+ },
171
+ detectPort
172
+ },
173
+ go: {
174
+ files: ['go.mod'],
175
+ setup: async (projectPath, execAsync) => {
176
+ console.log(`[go] Downloading dependencies...`);
177
+ await execAsync('go mod download', { cwd: projectPath });
178
+ },
179
+ start: (projectPath, port) => ({
180
+ command: 'go',
181
+ args: ['run', 'main.go'],
182
+ cwd: projectPath,
183
+ env: { ...process.env, PORT: port }
184
+ }),
185
+ detectPort
186
+ },
187
+ rust: {
188
+ files: ['Cargo.toml'],
189
+ setup: async (projectPath, execAsync) => {
190
+ console.log(`[rust] Building dependencies...`);
191
+ await execAsync('cargo build', { cwd: projectPath });
192
+ },
193
+ start: (projectPath, port) => ({
194
+ command: 'cargo',
195
+ args: ['run'],
196
+ cwd: projectPath,
197
+ env: { ...process.env, PORT: port }
198
+ }),
199
+ detectPort
200
+ },
201
+ deno: {
202
+ files: ['deno.json', 'deno.jsonc'],
203
+ setup: async () => {},
204
+ start: (projectPath, port) => ({
205
+ command: 'deno',
206
+ args: ['run', '--allow-net', 'main.ts'],
207
+ cwd: projectPath,
208
+ env: { ...process.env, PORT: port }
209
+ }),
210
+ detectPort
211
+ },
212
+ static: {
213
+ files: ['index.html'],
214
+ setup: async () => {},
215
+ start: (projectPath, port) => ({
216
+ command: 'npx',
217
+ args: ['serve', '-p', port, '-s', projectPath],
218
+ cwd: projectPath
219
+ }),
220
+ detectPort
221
+ }
222
+ };
223
+
224
+ export async function detectLanguage(projectPath) {
225
+ const entries = await readdir(projectPath, { withFileTypes: true });
226
+ const files = entries.map(e => e.name);
227
+
228
+ for (const [lang, config] of Object.entries(LANGUAGE_CONFIGS)) {
229
+ for (const file of config.files) {
230
+ if (files.includes(file)) {
231
+ if (lang === 'python') {
232
+ const isStreamlit = await hasStreamlit(projectPath);
233
+ return {
234
+ language: lang,
235
+ config: config,
236
+ detectedFile: file,
237
+ isStreamlit
238
+ };
239
+ }
240
+ return {
241
+ language: lang,
242
+ config: config,
243
+ detectedFile: file
244
+ };
245
+ }
246
+ }
247
+ }
248
+
249
+ const extMap = {
250
+ '.js': 'nodejs',
251
+ '.ts': 'nodejs',
252
+ '.py': 'python',
253
+ '.go': 'go',
254
+ '.rs': 'rust',
255
+ '.html': 'static',
256
+ '.htm': 'static'
257
+ };
258
+
259
+ for (const file of files) {
260
+ const ext = extname(file).toLowerCase();
261
+ if (extMap[ext]) {
262
+ return {
263
+ language: extMap[ext],
264
+ config: LANGUAGE_CONFIGS[extMap[ext]],
265
+ detectedFile: file
266
+ };
267
+ }
268
+ }
269
+
270
+ return null;
271
+ }
272
+
273
+ export { checkFileExists, LANGUAGE_CONFIGS };
lib/projectManager.js ADDED
@@ -0,0 +1,328 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import { spawn } from 'node:child_process';
2
+ import portfinder from 'portfinder';
3
+ import { join, dirname } from 'node:path';
4
+ import { fileURLToPath } from 'node:url';
5
+ import { writeFile, readFile } from 'node:fs/promises';
6
+ import { createTunnel, destroyTunnel, getTunnelInfo } from './tunnelManager.js';
7
+
8
+ const __filename = fileURLToPath(import.meta.url);
9
+ const __dirname = dirname(__filename);
10
+
11
+ const runningProjects = new Map();
12
+
13
+ async function execAsync(command, options = {}) {
14
+ return new Promise((resolve, reject) => {
15
+ exec(command, options, (error, stdout, stderr) => {
16
+ if (error) reject(new Error(stderr || error.message));
17
+ else resolve(stdout);
18
+ });
19
+ });
20
+ }
21
+
22
+ function exec(command, options = {}, callback) {
23
+ const child = spawn(command, {
24
+ shell: options.shell || '/bin/bash',
25
+ cwd: options.cwd || process.cwd(),
26
+ env: { ...process.env, ...options.env },
27
+ stdio: ['ignore', 'pipe', 'pipe']
28
+ });
29
+
30
+ let stdout = '';
31
+ let stderr = '';
32
+
33
+ child.stdout.on('data', (data) => {
34
+ stdout += data.toString();
35
+ });
36
+
37
+ child.stderr.on('data', (data) => {
38
+ stderr += data.toString();
39
+ });
40
+
41
+ child.on('close', (code) => {
42
+ callback(null, stdout, stderr);
43
+ });
44
+
45
+ child.on('error', (error) => {
46
+ callback(error, stdout, stderr);
47
+ });
48
+
49
+ return child;
50
+ }
51
+
52
+ async function getAvailablePort(startPort = 3001) {
53
+ return new Promise((resolve, reject) => {
54
+ portfinder.getPort({ port: startPort, maxPort: 9999 }, (err, port) => {
55
+ if (err) reject(err);
56
+ else resolve(port);
57
+ });
58
+ });
59
+ }
60
+
61
+ async function getLockPath(projectPath) {
62
+ return join(projectPath, '.project-lock');
63
+ }
64
+
65
+ async function hasInstallLock(projectPath, type = 'npm') {
66
+ const lockPath = await getLockPath(projectPath);
67
+ try {
68
+ const content = await readFile(lockPath, 'utf-8');
69
+ const locks = JSON.parse(content);
70
+ return locks[type] === true;
71
+ } catch {
72
+ return false;
73
+ }
74
+ }
75
+
76
+ async function setInstallLock(projectPath, type = 'npm') {
77
+ const lockPath = await getLockPath(projectPath);
78
+ let locks = {};
79
+ try {
80
+ const content = await readFile(lockPath, 'utf-8');
81
+ locks = JSON.parse(content);
82
+ } catch {}
83
+ locks[type] = true;
84
+ await writeFile(lockPath, JSON.stringify(locks, null, 2));
85
+ }
86
+
87
+ export async function startProject(projectId, projectPath, languageConfig, isStreamlit = false) {
88
+ if (runningProjects.has(projectId)) {
89
+ const existing = runningProjects.get(projectId);
90
+ return {
91
+ success: true,
92
+ projectId,
93
+ port: existing.port,
94
+ tunnelUrl: existing.tunnelUrl,
95
+ status: 'running',
96
+ pid: existing.pid,
97
+ localUrl: `http://localhost:${existing.port}`,
98
+ message: 'Project already running'
99
+ };
100
+ }
101
+
102
+ const port = await getAvailablePort();
103
+
104
+ console.log(`[${projectId}] Setting up project environment...`);
105
+
106
+ try {
107
+ await languageConfig.setup(projectPath, execAsync, isStreamlit);
108
+ console.log(`[${projectId}] Setup complete, starting project...`);
109
+ } catch (error) {
110
+ console.error(`[${projectId}] Setup failed:`, error.message);
111
+ return {
112
+ success: false,
113
+ projectId,
114
+ error: `Setup failed: ${error.message}`,
115
+ status: 'error',
116
+ message: 'Failed to setup project dependencies'
117
+ };
118
+ }
119
+
120
+ const startConfig = languageConfig.start(projectPath, port, isStreamlit);
121
+
122
+ return new Promise((resolve) => {
123
+ let resolved = false;
124
+ let portDetected = false;
125
+ let startupOutput = '';
126
+ let detectedPort = null;
127
+
128
+ const child = spawn(startConfig.command, startConfig.args, {
129
+ cwd: startConfig.cwd,
130
+ env: startConfig.env,
131
+ shell: startConfig.shell || false
132
+ });
133
+
134
+ const cleanup = async () => {
135
+ if (!resolved) return;
136
+ await destroyTunnel(projectId);
137
+ };
138
+
139
+ child.stdout.on('data', async (data) => {
140
+ const output = data.toString();
141
+ startupOutput += output;
142
+ console.log(`[${projectId}] ${output.trim()}`);
143
+
144
+ if (!portDetected) {
145
+ const detected = languageConfig.detectPort(output);
146
+ if (detected) {
147
+ detectedPort = parseInt(detected);
148
+ portDetected = true;
149
+ await handlePortDetected(detectedPort);
150
+ }
151
+ }
152
+ });
153
+
154
+ child.stderr.on('data', async (data) => {
155
+ const output = data.toString();
156
+ startupOutput += output;
157
+ console.error(`[${projectId}] ${output.trim()}`);
158
+
159
+ if (!portDetected && !resolved) {
160
+ const detected = languageConfig.detectPort(output);
161
+ if (detected) {
162
+ detectedPort = parseInt(detected);
163
+ portDetected = true;
164
+ await handlePortDetected(detectedPort);
165
+ }
166
+ }
167
+ });
168
+
169
+ const handlePortDetected = async (finalPort) => {
170
+ if (resolved) return;
171
+
172
+ const tunnelUrl = await createTunnel(finalPort, projectId);
173
+
174
+ runningProjects.set(projectId, {
175
+ pid: child.pid,
176
+ port: finalPort,
177
+ tunnelUrl: tunnelUrl,
178
+ child: child,
179
+ projectPath: projectPath,
180
+ startupOutput: startupOutput
181
+ });
182
+
183
+ resolved = true;
184
+ resolve({
185
+ success: true,
186
+ projectId,
187
+ port: finalPort,
188
+ tunnelUrl: tunnelUrl,
189
+ localUrl: `http://localhost:${finalPort}`,
190
+ status: 'running',
191
+ pid: child.pid,
192
+ message: tunnelUrl ? `Project started with public URL: ${tunnelUrl}` : 'Project started (tunnel unavailable)'
193
+ });
194
+ };
195
+
196
+ child.on('error', (error) => {
197
+ console.error(`[${projectId}] Process error:`, error.message);
198
+ if (!resolved) {
199
+ resolved = true;
200
+ resolve({
201
+ success: false,
202
+ projectId,
203
+ error: error.message,
204
+ status: 'error',
205
+ message: 'Failed to start project'
206
+ });
207
+ }
208
+ });
209
+
210
+ child.on('close', async (code) => {
211
+ console.log(`[${projectId}] Process exited with code ${code}`);
212
+
213
+ await destroyTunnel(projectId);
214
+ runningProjects.delete(projectId);
215
+
216
+ if (!resolved) {
217
+ resolved = true;
218
+ resolve({
219
+ success: false,
220
+ projectId,
221
+ error: `Process exited with code ${code}`,
222
+ status: 'stopped',
223
+ message: 'Project stopped (user can restart anytime)'
224
+ });
225
+ }
226
+ });
227
+
228
+ setTimeout(async () => {
229
+ if (!resolved) {
230
+ const finalPort = detectedPort || port;
231
+ console.log(`[${projectId}] Port detection timeout, using port ${finalPort}`);
232
+
233
+ const tunnelUrl = await createTunnel(finalPort, projectId);
234
+
235
+ runningProjects.set(projectId, {
236
+ pid: child.pid,
237
+ port: finalPort,
238
+ tunnelUrl: tunnelUrl,
239
+ child: child,
240
+ projectPath: projectPath,
241
+ startupOutput: startupOutput
242
+ });
243
+
244
+ resolved = true;
245
+ resolve({
246
+ success: true,
247
+ projectId,
248
+ port: finalPort,
249
+ tunnelUrl: tunnelUrl,
250
+ localUrl: `http://localhost:${finalPort}`,
251
+ status: 'running',
252
+ pid: child.pid,
253
+ message: tunnelUrl ? `Project started with public URL: ${tunnelUrl}` : 'Project started (tunnel unavailable)',
254
+ note: 'Port detected from default config'
255
+ });
256
+ }
257
+ }, 20000);
258
+ });
259
+ }
260
+
261
+ export async function stopProject(projectId) {
262
+ const project = runningProjects.get(projectId);
263
+ if (!project) {
264
+ return { success: true, message: 'Project not running' };
265
+ }
266
+
267
+ try {
268
+ await destroyTunnel(projectId);
269
+
270
+ if (project.child) {
271
+ project.child.kill('SIGTERM');
272
+ setTimeout(() => {
273
+ if (project.child && !project.child.killed) {
274
+ project.child.kill('SIGKILL');
275
+ }
276
+ }, 5000);
277
+ }
278
+
279
+ runningProjects.delete(projectId);
280
+ return { success: true, message: 'Project stopped (you can restart anytime)' };
281
+ } catch (error) {
282
+ return { success: false, error: error.message };
283
+ }
284
+ }
285
+
286
+ export function getProjectStatus(projectId) {
287
+ const project = runningProjects.get(projectId);
288
+ if (!project) {
289
+ return { status: 'stopped', running: false };
290
+ }
291
+
292
+ const tunnelInfo = getTunnelInfo(projectId);
293
+
294
+ return {
295
+ status: 'running',
296
+ running: true,
297
+ port: project.port,
298
+ tunnelUrl: tunnelInfo?.url || project.tunnelUrl,
299
+ localUrl: `http://localhost:${project.port}`,
300
+ pid: project.pid,
301
+ tunnelProvider: tunnelInfo?.provider || null
302
+ };
303
+ }
304
+
305
+ export function listRunningProjects() {
306
+ const projects = [];
307
+ for (const [id, project] of runningProjects) {
308
+ const tunnelInfo = getTunnelInfo(id);
309
+ projects.push({
310
+ id,
311
+ port: project.port,
312
+ tunnelUrl: tunnelInfo?.url || project.tunnelUrl,
313
+ tunnelProvider: tunnelInfo?.provider || null,
314
+ pid: project.pid
315
+ });
316
+ }
317
+ return projects;
318
+ }
319
+
320
+ export async function stopAllProjects() {
321
+ const promises = [];
322
+ for (const projectId of runningProjects.keys()) {
323
+ promises.push(stopProject(projectId));
324
+ }
325
+ await Promise.all(promises);
326
+ }
327
+
328
+ export { execAsync, exec, getAvailablePort, runningProjects };
lib/projectScaffolder.js ADDED
@@ -0,0 +1,98 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import { writeFile, mkdir } from 'node:fs/promises';
2
+ import { join } from 'node:path';
3
+
4
+ export async function writeProjectFiles(projectId, files, basePath) {
5
+ const projectPath = join(basePath, projectId);
6
+
7
+ await mkdir(projectPath, { recursive: true });
8
+
9
+ for (const [filepath, content] of Object.entries(files)) {
10
+ const fullPath = join(projectPath, filepath);
11
+ const dir = join(fullPath, '..');
12
+ await mkdir(dir, { recursive: true });
13
+ await writeFile(fullPath, content, 'utf-8');
14
+ }
15
+
16
+ return projectPath;
17
+ }
18
+
19
+ export function detectLanguageFromFiles(files) {
20
+ const filenames = Object.keys(files);
21
+
22
+ if (filenames.some(f => f.endsWith('package.json'))) {
23
+ const pkg = JSON.parse(files[filenames.find(f => f.endsWith('package.json'))]);
24
+ if (pkg.dependencies?.streamlit || filenames.includes('streamlit_app.py')) {
25
+ return { language: 'python', isStreamlit: true };
26
+ }
27
+ return { language: 'nodejs', isStreamlit: false };
28
+ }
29
+ if (filenames.some(f => f.endsWith('go.mod'))) return { language: 'go', isStreamlit: false };
30
+ if (filenames.some(f => f.endsWith('Cargo.toml'))) return { language: 'rust', isStreamlit: false };
31
+ if (filenames.some(f => f.endsWith('requirements.txt'))) return { language: 'python', isStreamlit: false };
32
+ if (filenames.some(f => f.endsWith('deno.json') || f.endsWith('deno.jsonc'))) return { language: 'deno', isStreamlit: false };
33
+ if (filenames.includes('index.html')) return { language: 'static', isStreamlit: false };
34
+ if (filenames.some(f => f.endsWith('.py'))) return { language: 'python', isStreamlit: false };
35
+
36
+ return { language: 'unknown', isStreamlit: false };
37
+ }
38
+
39
+ export function scaffoldNodeJS(files) {
40
+ const pkgPath = Object.keys(files).find(f => f.endsWith('package.json'));
41
+ if (!pkgPath) {
42
+ files['package.json'] = JSON.stringify({
43
+ name: 'deployed-project',
44
+ version: '1.0.0',
45
+ type: 'module',
46
+ scripts: { dev: 'vite', build: 'vite build', preview: 'vite preview' },
47
+ dependencies: { react: '^18.2.0', 'react-dom': '^18.2.0' },
48
+ devDependencies: { vite: '^5.0.0', '@vitejs/plugin-react': '^4.2.0' }
49
+ }, null, 2);
50
+
51
+ if (!files['vite.config.js']) {
52
+ files['vite.config.js'] = `import { defineConfig } from 'vite'
53
+ import react from '@vitejs/plugin-react'
54
+
55
+ export default defineConfig({
56
+ plugins: [react()],
57
+ server: { host: '0.0.0.0' }
58
+ })`;
59
+ }
60
+
61
+ if (!files['index.html']) {
62
+ files['index.html'] = `<!DOCTYPE html>
63
+ <html>
64
+ <head><title>Deployed Project</title></head>
65
+ <body><div id="root"></div></body>
66
+ </html>`;
67
+ }
68
+
69
+ if (!files['src/main.jsx']) {
70
+ files['src/main.jsx'] = `import React from 'react'
71
+ import ReactDOM from 'react-dom/client'
72
+ import App from './App'
73
+
74
+ ReactDOM.createRoot(document.getElementById('root')).render(
75
+ <React.StrictMode><App /></React.StrictMode>
76
+ )`;
77
+ }
78
+
79
+ if (!files['src/App.jsx']) {
80
+ files['src/App.jsx'] = `export default function App() {
81
+ return <h1>Hello Deployed!</h1>
82
+ }`;
83
+ }
84
+ }
85
+ return files;
86
+ }
87
+
88
+ export function scaffoldPython(files) {
89
+ if (!files['main.py']) {
90
+ files['main.py'] = `import streamlit as st
91
+ st.title("Deployed Project")
92
+ st.write("Hello from deployed Streamlit app!")`;
93
+ }
94
+ if (!files['requirements.txt']) {
95
+ files['requirements.txt'] = 'streamlit';
96
+ }
97
+ return files;
98
+ }
lib/projectsStore.js ADDED
@@ -0,0 +1,108 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import { readFile, writeFile, readdir, rm, mkdir } from 'node:fs/promises';
2
+ import { join } from 'node:path';
3
+ import { randomBytes } from 'node:crypto';
4
+
5
+ const STORE_FILE = join(process.cwd(), 'data', 'deployed-projects.json');
6
+
7
+ const deployedProjects = new Map();
8
+
9
+ async function ensureDataDir() {
10
+ const dataDir = join(process.cwd(), 'data');
11
+ try {
12
+ await mkdir(dataDir, { recursive: true });
13
+ } catch {}
14
+ }
15
+
16
+ async function loadStore() {
17
+ try {
18
+ await ensureDataDir();
19
+ const data = await readFile(STORE_FILE, 'utf-8');
20
+ const parsed = JSON.parse(data);
21
+ deployedProjects.clear();
22
+ for (const [id, project] of Object.entries(parsed)) {
23
+ deployedProjects.set(id, project);
24
+ }
25
+ } catch {
26
+ deployedProjects.clear();
27
+ }
28
+ }
29
+
30
+ async function saveStore() {
31
+ try {
32
+ await ensureDataDir();
33
+ const data = JSON.stringify(Object.fromEntries(deployedProjects), null, 2);
34
+ await writeFile(STORE_FILE, data, 'utf-8');
35
+ } catch (error) {
36
+ console.error('Failed to save projects store:', error.message);
37
+ }
38
+ }
39
+
40
+ function generateId() {
41
+ return randomBytes(8).toString('hex');
42
+ }
43
+
44
+ export async function initStore() {
45
+ await loadStore();
46
+ }
47
+
48
+ export function createProject(data) {
49
+ const id = generateId();
50
+ const project = {
51
+ id,
52
+ name: data.name || id,
53
+ language: data.language || 'unknown',
54
+ createdAt: new Date().toISOString(),
55
+ updatedAt: new Date().toISOString(),
56
+ files: data.files || {},
57
+ config: data.config || {},
58
+ metadata: data.metadata || {}
59
+ };
60
+ deployedProjects.set(id, project);
61
+ saveStore();
62
+ return project;
63
+ }
64
+
65
+ export function getProject(id) {
66
+ return deployedProjects.get(id) || null;
67
+ }
68
+
69
+ export function getAllProjects() {
70
+ return Array.from(deployedProjects.values());
71
+ }
72
+
73
+ export function updateProject(id, data) {
74
+ const project = deployedProjects.get(id);
75
+ if (!project) return null;
76
+
77
+ const updated = {
78
+ ...project,
79
+ ...data,
80
+ updatedAt: new Date().toISOString()
81
+ };
82
+ deployedProjects.set(id, updated);
83
+ saveStore();
84
+ return updated;
85
+ }
86
+
87
+ export function deleteProject(id) {
88
+ const deleted = deployedProjects.delete(id);
89
+ if (deleted) {
90
+ saveStore();
91
+ }
92
+ return deleted;
93
+ }
94
+
95
+ export async function deleteProjectFiles(id) {
96
+ const project = deployedProjects.get(id);
97
+ if (!project) return false;
98
+
99
+ const projectPath = join(process.cwd(), 'projects', id);
100
+ try {
101
+ await rm(projectPath, { recursive: true, force: true });
102
+ return true;
103
+ } catch {
104
+ return false;
105
+ }
106
+ }
107
+
108
+ export { generateId, deployedProjects };
lib/tunnelManager.js ADDED
@@ -0,0 +1,212 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import { spawn } from 'node:child_process';
2
+ import ngrok from '@ngrok/ngrok';
3
+
4
+ const tunnels = new Map();
5
+
6
+ async function checkCommandExists(command) {
7
+ return new Promise((resolve) => {
8
+ const searchPaths = [
9
+ ...process.env.PATH?.split(':') || [],
10
+ `${process.env.HOME}/.local/bin`
11
+ ];
12
+
13
+ for (const dir of searchPaths) {
14
+ const child = spawn('test', ['-x', `${dir}/${command}`]);
15
+ child.on('close', (code) => {
16
+ if (code === 0) {
17
+ resolve(true);
18
+ }
19
+ });
20
+ child.on('error', () => {});
21
+ }
22
+
23
+ const child = spawn('which', [command], { shell: true });
24
+ child.on('close', (code) => resolve(code === 0));
25
+ child.on('error', () => resolve(false));
26
+ });
27
+ }
28
+
29
+ async function createCloudflareTunnel(port, projectId) {
30
+ console.log(`[${projectId}] Starting Cloudflare Tunnel...`);
31
+
32
+ const cloudflaredExists = await checkCommandExists('cloudflared');
33
+ if (!cloudflaredExists) {
34
+ console.log(`[${projectId}] cloudflared not installed, skipping`);
35
+ return null;
36
+ }
37
+
38
+ return new Promise((resolve) => {
39
+ let resolved = false;
40
+ let tunnelUrl = null;
41
+
42
+ const cloudflared = spawn('cloudflared', [
43
+ 'tunnel',
44
+ '--url', `http://localhost:${port}`,
45
+ '--logfile', '/dev/null',
46
+ '--metrics', 'localhost:0',
47
+ '--no-autoupdate'
48
+ ], {
49
+ stdio: ['ignore', 'pipe', 'pipe']
50
+ });
51
+
52
+ const timeout = setTimeout(() => {
53
+ if (!resolved) {
54
+ resolved = true;
55
+ cloudflared.kill('SIGTERM');
56
+ console.log(`[${projectId}] Cloudflare Tunnel timeout`);
57
+ resolve(null);
58
+ }
59
+ }, 30000);
60
+
61
+ const parseOutput = (data) => {
62
+ if (resolved) return;
63
+
64
+ const output = data.toString();
65
+
66
+ const match = output.match(/https?:\/\/[a-zA-Z0-9-]+\.trycloudflare\.com/);
67
+ if (match) {
68
+ tunnelUrl = match[0];
69
+ resolved = true;
70
+ clearTimeout(timeout);
71
+
72
+ console.log(`[${projectId}] Cloudflare Tunnel established at ${tunnelUrl}`);
73
+
74
+ tunnels.set(projectId, {
75
+ provider: 'cloudflare',
76
+ url: tunnelUrl,
77
+ process: cloudflared
78
+ });
79
+
80
+ resolve(tunnelUrl);
81
+ }
82
+
83
+ if (output.includes('ERR_')) {
84
+ console.error(`[${projectId}] Cloudflare error: ${output.trim()}`);
85
+ }
86
+ };
87
+
88
+ cloudflared.stdout.on('data', parseOutput);
89
+ cloudflared.stderr.on('data', parseOutput);
90
+
91
+ cloudflared.on('error', (error) => {
92
+ if (!resolved) {
93
+ resolved = true;
94
+ clearTimeout(timeout);
95
+ console.error(`[${projectId}] Cloudflare process error: ${error.message}`);
96
+ resolve(null);
97
+ }
98
+ });
99
+
100
+ cloudflared.on('close', (code) => {
101
+ if (!resolved) {
102
+ resolved = true;
103
+ clearTimeout(timeout);
104
+ console.log(`[${projectId}] Cloudflare process closed with code ${code}`);
105
+ resolve(tunnelUrl);
106
+ }
107
+ });
108
+ });
109
+ }
110
+
111
+ async function createNgrokTunnel(port, projectId) {
112
+ const authtoken = process.env.NGROK_AUTH_TOKEN;
113
+
114
+ if (!authtoken) {
115
+ console.log(`[${projectId}] No NGROK_AUTH_TOKEN found, skipping ngrok`);
116
+ return null;
117
+ }
118
+
119
+ console.log(`[${projectId}] Starting ngrok tunnel...`);
120
+
121
+ try {
122
+ await ngrok.authtoken(authtoken);
123
+
124
+ const tunnel = await ngrok.connect({
125
+ addr: port,
126
+ authtoken: authtoken,
127
+ onStatusChange: (status) => {
128
+ console.log(`[${projectId}] Ngrok status: ${status}`);
129
+ },
130
+ onLogEvent: (event) => {
131
+ console.log(`[${projectId}] Ngrok: ${event}`);
132
+ }
133
+ });
134
+
135
+ const tunnelUrl = tunnel.url();
136
+ console.log(`[${projectId}] Ngrok Tunnel established at ${tunnelUrl}`);
137
+
138
+ tunnels.set(projectId, {
139
+ provider: 'ngrok',
140
+ url: tunnelUrl,
141
+ tunnel: tunnel
142
+ });
143
+
144
+ return tunnelUrl;
145
+ } catch (error) {
146
+ console.error(`[${projectId}] Ngrok error: ${error.message}`);
147
+ return null;
148
+ }
149
+ }
150
+
151
+ export async function createTunnel(port, projectId) {
152
+ const existingTunnel = tunnels.get(projectId);
153
+ if (existingTunnel) {
154
+ console.log(`[${projectId}] Tunnel already exists: ${existingTunnel.url}`);
155
+ return existingTunnel.url;
156
+ }
157
+
158
+ const provider = process.env.TUNNEL_PROVIDER || 'cloudflare,ngrok';
159
+ const providers = provider.split(',').map(p => p.trim());
160
+
161
+ for (const p of providers) {
162
+ let tunnelUrl = null;
163
+
164
+ if (p === 'cloudflare') {
165
+ tunnelUrl = await createCloudflareTunnel(port, projectId);
166
+ } else if (p === 'ngrok') {
167
+ tunnelUrl = await createNgrokTunnel(port, projectId);
168
+ }
169
+
170
+ if (tunnelUrl) {
171
+ return tunnelUrl;
172
+ }
173
+
174
+ console.log(`[${projectId}] ${p} failed, trying next provider...`);
175
+ }
176
+
177
+ console.log(`[${projectId}] All tunnel providers failed, continuing without public URL`);
178
+ return null;
179
+ }
180
+
181
+ export async function destroyTunnel(projectId) {
182
+ const tunnelInfo = tunnels.get(projectId);
183
+
184
+ if (!tunnelInfo) {
185
+ return;
186
+ }
187
+
188
+ try {
189
+ if (tunnelInfo.provider === 'ngrok' && tunnelInfo.tunnel) {
190
+ await tunnelInfo.tunnel.close();
191
+ } else if (tunnelInfo.provider === 'cloudflare' && tunnelInfo.process) {
192
+ tunnelInfo.process.kill('SIGTERM');
193
+ }
194
+
195
+ tunnels.delete(projectId);
196
+ console.log(`[${projectId}] Tunnel destroyed`);
197
+ } catch (error) {
198
+ console.error(`[${projectId}] Error destroying tunnel: ${error.message}`);
199
+ }
200
+ }
201
+
202
+ export function getTunnelInfo(projectId) {
203
+ return tunnels.get(projectId) || null;
204
+ }
205
+
206
+ export async function destroyAllTunnels() {
207
+ for (const projectId of tunnels.keys()) {
208
+ await destroyTunnel(projectId);
209
+ }
210
+ }
211
+
212
+ export { checkCommandExists };
nodemon.json ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "watch": ["server.js", "lib/", "routes/", ".env"],
3
+ "ignore": [
4
+ "projects/**",
5
+ "node_modules/**",
6
+ "*.log",
7
+ ".project-lock",
8
+ ".project-meta/**"
9
+ ],
10
+ "ext": "js,json,mjs,cjs",
11
+ "delay": "1000",
12
+ "env": {
13
+ "NODE_ENV": "development"
14
+ }
15
+ }
package-lock.json ADDED
@@ -0,0 +1,1469 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "project-runner-server",
3
+ "version": "2.0.0",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "project-runner-server",
9
+ "version": "2.0.0",
10
+ "license": "ISC",
11
+ "dependencies": {
12
+ "@ngrok/ngrok": "^1.7.0",
13
+ "cors": "^2.8.6",
14
+ "dotenv": "^16.4.7",
15
+ "express": "^5.2.1",
16
+ "portfinder": "^1.0.32"
17
+ },
18
+ "devDependencies": {
19
+ "nodemon": "^3.1.0"
20
+ }
21
+ },
22
+ "node_modules/@ngrok/ngrok": {
23
+ "version": "1.7.0",
24
+ "resolved": "https://registry.npmjs.org/@ngrok/ngrok/-/ngrok-1.7.0.tgz",
25
+ "integrity": "sha512-P06o9TpxrJbiRbHQkiwy/rUrlXRupc+Z8KT4MiJfmcdWxvIdzjCaJOdnNkcOTs6DMyzIOefG5tvk/HLdtjqr0g==",
26
+ "license": "(MIT OR Apache-2.0)",
27
+ "engines": {
28
+ "node": ">= 10"
29
+ },
30
+ "optionalDependencies": {
31
+ "@ngrok/ngrok-android-arm64": "1.7.0",
32
+ "@ngrok/ngrok-darwin-arm64": "1.7.0",
33
+ "@ngrok/ngrok-darwin-universal": "1.7.0",
34
+ "@ngrok/ngrok-darwin-x64": "1.7.0",
35
+ "@ngrok/ngrok-freebsd-x64": "1.7.0",
36
+ "@ngrok/ngrok-linux-arm-gnueabihf": "1.7.0",
37
+ "@ngrok/ngrok-linux-arm64-gnu": "1.7.0",
38
+ "@ngrok/ngrok-linux-arm64-musl": "1.7.0",
39
+ "@ngrok/ngrok-linux-x64-gnu": "1.7.0",
40
+ "@ngrok/ngrok-linux-x64-musl": "1.7.0",
41
+ "@ngrok/ngrok-win32-arm64-msvc": "1.7.0",
42
+ "@ngrok/ngrok-win32-ia32-msvc": "1.7.0",
43
+ "@ngrok/ngrok-win32-x64-msvc": "1.7.0"
44
+ }
45
+ },
46
+ "node_modules/@ngrok/ngrok-android-arm64": {
47
+ "version": "1.7.0",
48
+ "resolved": "https://registry.npmjs.org/@ngrok/ngrok-android-arm64/-/ngrok-android-arm64-1.7.0.tgz",
49
+ "integrity": "sha512-8tco3ID6noSaNy+CMS7ewqPoIkIM6XO5COCzsUp3Wv3XEbMSyn65RN6cflX2JdqLfUCHcMyD0ahr9IEiHwqmbQ==",
50
+ "cpu": [
51
+ "arm64"
52
+ ],
53
+ "license": "MIT",
54
+ "optional": true,
55
+ "os": [
56
+ "android"
57
+ ],
58
+ "engines": {
59
+ "node": ">= 10"
60
+ }
61
+ },
62
+ "node_modules/@ngrok/ngrok-darwin-arm64": {
63
+ "version": "1.7.0",
64
+ "resolved": "https://registry.npmjs.org/@ngrok/ngrok-darwin-arm64/-/ngrok-darwin-arm64-1.7.0.tgz",
65
+ "integrity": "sha512-+dmJSOzSO+MNDVrPOca2yYDP1W3KfP4qOlAkarIeFRIfqonQwq3QCBmcR7HAlZocLsSqEwyG6KP4RRvAuT0WGQ==",
66
+ "cpu": [
67
+ "arm64"
68
+ ],
69
+ "license": "MIT",
70
+ "optional": true,
71
+ "os": [
72
+ "darwin"
73
+ ],
74
+ "engines": {
75
+ "node": ">= 10"
76
+ }
77
+ },
78
+ "node_modules/@ngrok/ngrok-darwin-universal": {
79
+ "version": "1.7.0",
80
+ "resolved": "https://registry.npmjs.org/@ngrok/ngrok-darwin-universal/-/ngrok-darwin-universal-1.7.0.tgz",
81
+ "integrity": "sha512-fDEfewyE2pWGFBhOSwQZObeHUkc65U1l+3HIgSOe094TMHsqmyJD0KTCgW9KSn0VP4OvDZbAISi1T3nvqgZYhQ==",
82
+ "license": "MIT",
83
+ "optional": true,
84
+ "os": [
85
+ "darwin"
86
+ ],
87
+ "engines": {
88
+ "node": ">= 10"
89
+ }
90
+ },
91
+ "node_modules/@ngrok/ngrok-darwin-x64": {
92
+ "version": "1.7.0",
93
+ "resolved": "https://registry.npmjs.org/@ngrok/ngrok-darwin-x64/-/ngrok-darwin-x64-1.7.0.tgz",
94
+ "integrity": "sha512-+fwMi5uHd9G8BS42MMa9ye6exI5lwTcjUO6Ut497Vu0qgLONdVRenRqnEePV+Q3KtQR7NjqkMnomVfkr9MBjtw==",
95
+ "cpu": [
96
+ "x64"
97
+ ],
98
+ "license": "MIT",
99
+ "optional": true,
100
+ "os": [
101
+ "darwin"
102
+ ],
103
+ "engines": {
104
+ "node": ">= 10"
105
+ }
106
+ },
107
+ "node_modules/@ngrok/ngrok-freebsd-x64": {
108
+ "version": "1.7.0",
109
+ "resolved": "https://registry.npmjs.org/@ngrok/ngrok-freebsd-x64/-/ngrok-freebsd-x64-1.7.0.tgz",
110
+ "integrity": "sha512-2OGgbrjy3yLRrqAz5N6hlUKIWIXSpR5RjQa2chtZMsSbszQ6c9dI+uVQfOKAeo05tHMUgrYAZ7FocC+ig0dzdQ==",
111
+ "cpu": [
112
+ "x64"
113
+ ],
114
+ "license": "MIT",
115
+ "optional": true,
116
+ "os": [
117
+ "freebsd"
118
+ ],
119
+ "engines": {
120
+ "node": ">= 10"
121
+ }
122
+ },
123
+ "node_modules/@ngrok/ngrok-linux-arm-gnueabihf": {
124
+ "version": "1.7.0",
125
+ "resolved": "https://registry.npmjs.org/@ngrok/ngrok-linux-arm-gnueabihf/-/ngrok-linux-arm-gnueabihf-1.7.0.tgz",
126
+ "integrity": "sha512-SN9YIfEQiR9xN90QVNvdgvAemqMLoFVSeTWZs779145hQMhvF9Qd9rnWi6J+2uNNK10OczdV1oc/nq1es7u/3g==",
127
+ "cpu": [
128
+ "arm"
129
+ ],
130
+ "license": "MIT",
131
+ "optional": true,
132
+ "os": [
133
+ "linux"
134
+ ],
135
+ "engines": {
136
+ "node": ">= 10"
137
+ }
138
+ },
139
+ "node_modules/@ngrok/ngrok-linux-arm64-gnu": {
140
+ "version": "1.7.0",
141
+ "resolved": "https://registry.npmjs.org/@ngrok/ngrok-linux-arm64-gnu/-/ngrok-linux-arm64-gnu-1.7.0.tgz",
142
+ "integrity": "sha512-KDMgzPKFU2kbpVSaA2RZBBia5IPdJEe063YlyVFnSMJmPYWCUnMwdybBsucXfV9u1Lw/ZjKTKotIlbTWGn3HGw==",
143
+ "cpu": [
144
+ "arm64"
145
+ ],
146
+ "license": "MIT",
147
+ "optional": true,
148
+ "os": [
149
+ "linux"
150
+ ],
151
+ "engines": {
152
+ "node": ">= 10"
153
+ }
154
+ },
155
+ "node_modules/@ngrok/ngrok-linux-arm64-musl": {
156
+ "version": "1.7.0",
157
+ "resolved": "https://registry.npmjs.org/@ngrok/ngrok-linux-arm64-musl/-/ngrok-linux-arm64-musl-1.7.0.tgz",
158
+ "integrity": "sha512-e66vUdVrBlQ0lT9ZdamB4U604zt5Gualt8/WVcUGzbu8s5LajWd6g/mzZCUjK4UepjvMpfgmCp1/+rX7Rk8d5A==",
159
+ "cpu": [
160
+ "arm64"
161
+ ],
162
+ "license": "MIT",
163
+ "optional": true,
164
+ "os": [
165
+ "linux"
166
+ ],
167
+ "engines": {
168
+ "node": ">= 10"
169
+ }
170
+ },
171
+ "node_modules/@ngrok/ngrok-linux-x64-gnu": {
172
+ "version": "1.7.0",
173
+ "resolved": "https://registry.npmjs.org/@ngrok/ngrok-linux-x64-gnu/-/ngrok-linux-x64-gnu-1.7.0.tgz",
174
+ "integrity": "sha512-M6gF0DyOEFqXLfWxObfL3bxYZ4+PnKBHuyLVaqNfFN9Y5utY2mdPOn5422Ppbk4XoIK5/YkuhRqPJl/9FivKEw==",
175
+ "cpu": [
176
+ "x64"
177
+ ],
178
+ "license": "MIT",
179
+ "optional": true,
180
+ "os": [
181
+ "linux"
182
+ ],
183
+ "engines": {
184
+ "node": ">= 10"
185
+ }
186
+ },
187
+ "node_modules/@ngrok/ngrok-linux-x64-musl": {
188
+ "version": "1.7.0",
189
+ "resolved": "https://registry.npmjs.org/@ngrok/ngrok-linux-x64-musl/-/ngrok-linux-x64-musl-1.7.0.tgz",
190
+ "integrity": "sha512-4Ijm0dKeoyzZTMaYxR2EiNjtlK81ebflg/WYIO1XtleFrVy4UJEGnxtxEidYoT4BfCqi4uvXiK2Mx216xXKvog==",
191
+ "cpu": [
192
+ "x64"
193
+ ],
194
+ "license": "MIT",
195
+ "optional": true,
196
+ "os": [
197
+ "linux"
198
+ ],
199
+ "engines": {
200
+ "node": ">= 10"
201
+ }
202
+ },
203
+ "node_modules/@ngrok/ngrok-win32-arm64-msvc": {
204
+ "version": "1.7.0",
205
+ "resolved": "https://registry.npmjs.org/@ngrok/ngrok-win32-arm64-msvc/-/ngrok-win32-arm64-msvc-1.7.0.tgz",
206
+ "integrity": "sha512-u7qyWIJI2/YG1HTBnHwUR1+Z2tyGfAsUAItJK/+N1G0FeWJhIWQvSIFJHlaPy4oW1Dc8mSDBX9qvVsiQgLaRFg==",
207
+ "cpu": [
208
+ "arm64"
209
+ ],
210
+ "license": "MIT",
211
+ "optional": true,
212
+ "os": [
213
+ "win32"
214
+ ],
215
+ "engines": {
216
+ "node": ">= 10"
217
+ }
218
+ },
219
+ "node_modules/@ngrok/ngrok-win32-ia32-msvc": {
220
+ "version": "1.7.0",
221
+ "resolved": "https://registry.npmjs.org/@ngrok/ngrok-win32-ia32-msvc/-/ngrok-win32-ia32-msvc-1.7.0.tgz",
222
+ "integrity": "sha512-/UdYUsLNv/Q8j9YJsyIfq/jLCoD8WP+NidouucTUzSoDtmOsXBBT3itLrmPiZTEdEgKiFYLuC1Zon8XQQvbVLA==",
223
+ "cpu": [
224
+ "ia32"
225
+ ],
226
+ "license": "MIT",
227
+ "optional": true,
228
+ "os": [
229
+ "win32"
230
+ ],
231
+ "engines": {
232
+ "node": ">= 10"
233
+ }
234
+ },
235
+ "node_modules/@ngrok/ngrok-win32-x64-msvc": {
236
+ "version": "1.7.0",
237
+ "resolved": "https://registry.npmjs.org/@ngrok/ngrok-win32-x64-msvc/-/ngrok-win32-x64-msvc-1.7.0.tgz",
238
+ "integrity": "sha512-UFJg/duEWzZlLkEs61Gz6/5nYhGaKI62I8dvUGdBR3NCtIMagehnFaFxmnXZldyHmCM8U0aCIFNpWRaKcrQkoA==",
239
+ "cpu": [
240
+ "x64"
241
+ ],
242
+ "license": "MIT",
243
+ "optional": true,
244
+ "os": [
245
+ "win32"
246
+ ],
247
+ "engines": {
248
+ "node": ">= 10"
249
+ }
250
+ },
251
+ "node_modules/accepts": {
252
+ "version": "2.0.0",
253
+ "resolved": "https://registry.npmjs.org/accepts/-/accepts-2.0.0.tgz",
254
+ "integrity": "sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==",
255
+ "license": "MIT",
256
+ "dependencies": {
257
+ "mime-types": "^3.0.0",
258
+ "negotiator": "^1.0.0"
259
+ },
260
+ "engines": {
261
+ "node": ">= 0.6"
262
+ }
263
+ },
264
+ "node_modules/anymatch": {
265
+ "version": "3.1.3",
266
+ "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
267
+ "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
268
+ "dev": true,
269
+ "license": "ISC",
270
+ "dependencies": {
271
+ "normalize-path": "^3.0.0",
272
+ "picomatch": "^2.0.4"
273
+ },
274
+ "engines": {
275
+ "node": ">= 8"
276
+ }
277
+ },
278
+ "node_modules/async": {
279
+ "version": "3.2.6",
280
+ "resolved": "https://registry.npmjs.org/async/-/async-3.2.6.tgz",
281
+ "integrity": "sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==",
282
+ "license": "MIT"
283
+ },
284
+ "node_modules/balanced-match": {
285
+ "version": "4.0.4",
286
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz",
287
+ "integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==",
288
+ "dev": true,
289
+ "license": "MIT",
290
+ "engines": {
291
+ "node": "18 || 20 || >=22"
292
+ }
293
+ },
294
+ "node_modules/binary-extensions": {
295
+ "version": "2.3.0",
296
+ "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz",
297
+ "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==",
298
+ "dev": true,
299
+ "license": "MIT",
300
+ "engines": {
301
+ "node": ">=8"
302
+ },
303
+ "funding": {
304
+ "url": "https://github.com/sponsors/sindresorhus"
305
+ }
306
+ },
307
+ "node_modules/body-parser": {
308
+ "version": "2.2.2",
309
+ "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-2.2.2.tgz",
310
+ "integrity": "sha512-oP5VkATKlNwcgvxi0vM0p/D3n2C3EReYVX+DNYs5TjZFn/oQt2j+4sVJtSMr18pdRr8wjTcBl6LoV+FUwzPmNA==",
311
+ "license": "MIT",
312
+ "dependencies": {
313
+ "bytes": "^3.1.2",
314
+ "content-type": "^1.0.5",
315
+ "debug": "^4.4.3",
316
+ "http-errors": "^2.0.0",
317
+ "iconv-lite": "^0.7.0",
318
+ "on-finished": "^2.4.1",
319
+ "qs": "^6.14.1",
320
+ "raw-body": "^3.0.1",
321
+ "type-is": "^2.0.1"
322
+ },
323
+ "engines": {
324
+ "node": ">=18"
325
+ },
326
+ "funding": {
327
+ "type": "opencollective",
328
+ "url": "https://opencollective.com/express"
329
+ }
330
+ },
331
+ "node_modules/brace-expansion": {
332
+ "version": "5.0.5",
333
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.5.tgz",
334
+ "integrity": "sha512-VZznLgtwhn+Mact9tfiwx64fA9erHH/MCXEUfB/0bX/6Fz6ny5EGTXYltMocqg4xFAQZtnO3DHWWXi8RiuN7cQ==",
335
+ "dev": true,
336
+ "license": "MIT",
337
+ "dependencies": {
338
+ "balanced-match": "^4.0.2"
339
+ },
340
+ "engines": {
341
+ "node": "18 || 20 || >=22"
342
+ }
343
+ },
344
+ "node_modules/braces": {
345
+ "version": "3.0.3",
346
+ "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
347
+ "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
348
+ "dev": true,
349
+ "license": "MIT",
350
+ "dependencies": {
351
+ "fill-range": "^7.1.1"
352
+ },
353
+ "engines": {
354
+ "node": ">=8"
355
+ }
356
+ },
357
+ "node_modules/bytes": {
358
+ "version": "3.1.2",
359
+ "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
360
+ "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
361
+ "license": "MIT",
362
+ "engines": {
363
+ "node": ">= 0.8"
364
+ }
365
+ },
366
+ "node_modules/call-bind-apply-helpers": {
367
+ "version": "1.0.2",
368
+ "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
369
+ "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
370
+ "license": "MIT",
371
+ "dependencies": {
372
+ "es-errors": "^1.3.0",
373
+ "function-bind": "^1.1.2"
374
+ },
375
+ "engines": {
376
+ "node": ">= 0.4"
377
+ }
378
+ },
379
+ "node_modules/call-bound": {
380
+ "version": "1.0.4",
381
+ "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz",
382
+ "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==",
383
+ "license": "MIT",
384
+ "dependencies": {
385
+ "call-bind-apply-helpers": "^1.0.2",
386
+ "get-intrinsic": "^1.3.0"
387
+ },
388
+ "engines": {
389
+ "node": ">= 0.4"
390
+ },
391
+ "funding": {
392
+ "url": "https://github.com/sponsors/ljharb"
393
+ }
394
+ },
395
+ "node_modules/chokidar": {
396
+ "version": "3.6.0",
397
+ "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz",
398
+ "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
399
+ "dev": true,
400
+ "license": "MIT",
401
+ "dependencies": {
402
+ "anymatch": "~3.1.2",
403
+ "braces": "~3.0.2",
404
+ "glob-parent": "~5.1.2",
405
+ "is-binary-path": "~2.1.0",
406
+ "is-glob": "~4.0.1",
407
+ "normalize-path": "~3.0.0",
408
+ "readdirp": "~3.6.0"
409
+ },
410
+ "engines": {
411
+ "node": ">= 8.10.0"
412
+ },
413
+ "funding": {
414
+ "url": "https://paulmillr.com/funding/"
415
+ },
416
+ "optionalDependencies": {
417
+ "fsevents": "~2.3.2"
418
+ }
419
+ },
420
+ "node_modules/content-disposition": {
421
+ "version": "1.0.1",
422
+ "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-1.0.1.tgz",
423
+ "integrity": "sha512-oIXISMynqSqm241k6kcQ5UwttDILMK4BiurCfGEREw6+X9jkkpEe5T9FZaApyLGGOnFuyMWZpdolTXMtvEJ08Q==",
424
+ "license": "MIT",
425
+ "engines": {
426
+ "node": ">=18"
427
+ },
428
+ "funding": {
429
+ "type": "opencollective",
430
+ "url": "https://opencollective.com/express"
431
+ }
432
+ },
433
+ "node_modules/content-type": {
434
+ "version": "1.0.5",
435
+ "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz",
436
+ "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==",
437
+ "license": "MIT",
438
+ "engines": {
439
+ "node": ">= 0.6"
440
+ }
441
+ },
442
+ "node_modules/cookie": {
443
+ "version": "0.7.2",
444
+ "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.2.tgz",
445
+ "integrity": "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==",
446
+ "license": "MIT",
447
+ "engines": {
448
+ "node": ">= 0.6"
449
+ }
450
+ },
451
+ "node_modules/cookie-signature": {
452
+ "version": "1.2.2",
453
+ "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.2.2.tgz",
454
+ "integrity": "sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg==",
455
+ "license": "MIT",
456
+ "engines": {
457
+ "node": ">=6.6.0"
458
+ }
459
+ },
460
+ "node_modules/cors": {
461
+ "version": "2.8.6",
462
+ "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.6.tgz",
463
+ "integrity": "sha512-tJtZBBHA6vjIAaF6EnIaq6laBBP9aq/Y3ouVJjEfoHbRBcHBAHYcMh/w8LDrk2PvIMMq8gmopa5D4V8RmbrxGw==",
464
+ "license": "MIT",
465
+ "dependencies": {
466
+ "object-assign": "^4",
467
+ "vary": "^1"
468
+ },
469
+ "engines": {
470
+ "node": ">= 0.10"
471
+ },
472
+ "funding": {
473
+ "type": "opencollective",
474
+ "url": "https://opencollective.com/express"
475
+ }
476
+ },
477
+ "node_modules/debug": {
478
+ "version": "4.4.3",
479
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
480
+ "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
481
+ "license": "MIT",
482
+ "dependencies": {
483
+ "ms": "^2.1.3"
484
+ },
485
+ "engines": {
486
+ "node": ">=6.0"
487
+ },
488
+ "peerDependenciesMeta": {
489
+ "supports-color": {
490
+ "optional": true
491
+ }
492
+ }
493
+ },
494
+ "node_modules/depd": {
495
+ "version": "2.0.0",
496
+ "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
497
+ "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
498
+ "license": "MIT",
499
+ "engines": {
500
+ "node": ">= 0.8"
501
+ }
502
+ },
503
+ "node_modules/dotenv": {
504
+ "version": "16.6.1",
505
+ "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.6.1.tgz",
506
+ "integrity": "sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow==",
507
+ "license": "BSD-2-Clause",
508
+ "engines": {
509
+ "node": ">=12"
510
+ },
511
+ "funding": {
512
+ "url": "https://dotenvx.com"
513
+ }
514
+ },
515
+ "node_modules/dunder-proto": {
516
+ "version": "1.0.1",
517
+ "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
518
+ "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
519
+ "license": "MIT",
520
+ "dependencies": {
521
+ "call-bind-apply-helpers": "^1.0.1",
522
+ "es-errors": "^1.3.0",
523
+ "gopd": "^1.2.0"
524
+ },
525
+ "engines": {
526
+ "node": ">= 0.4"
527
+ }
528
+ },
529
+ "node_modules/ee-first": {
530
+ "version": "1.1.1",
531
+ "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
532
+ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==",
533
+ "license": "MIT"
534
+ },
535
+ "node_modules/encodeurl": {
536
+ "version": "2.0.0",
537
+ "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz",
538
+ "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==",
539
+ "license": "MIT",
540
+ "engines": {
541
+ "node": ">= 0.8"
542
+ }
543
+ },
544
+ "node_modules/es-define-property": {
545
+ "version": "1.0.1",
546
+ "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
547
+ "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
548
+ "license": "MIT",
549
+ "engines": {
550
+ "node": ">= 0.4"
551
+ }
552
+ },
553
+ "node_modules/es-errors": {
554
+ "version": "1.3.0",
555
+ "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
556
+ "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
557
+ "license": "MIT",
558
+ "engines": {
559
+ "node": ">= 0.4"
560
+ }
561
+ },
562
+ "node_modules/es-object-atoms": {
563
+ "version": "1.1.1",
564
+ "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
565
+ "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
566
+ "license": "MIT",
567
+ "dependencies": {
568
+ "es-errors": "^1.3.0"
569
+ },
570
+ "engines": {
571
+ "node": ">= 0.4"
572
+ }
573
+ },
574
+ "node_modules/escape-html": {
575
+ "version": "1.0.3",
576
+ "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
577
+ "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==",
578
+ "license": "MIT"
579
+ },
580
+ "node_modules/etag": {
581
+ "version": "1.8.1",
582
+ "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
583
+ "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==",
584
+ "license": "MIT",
585
+ "engines": {
586
+ "node": ">= 0.6"
587
+ }
588
+ },
589
+ "node_modules/express": {
590
+ "version": "5.2.1",
591
+ "resolved": "https://registry.npmjs.org/express/-/express-5.2.1.tgz",
592
+ "integrity": "sha512-hIS4idWWai69NezIdRt2xFVofaF4j+6INOpJlVOLDO8zXGpUVEVzIYk12UUi2JzjEzWL3IOAxcTubgz9Po0yXw==",
593
+ "license": "MIT",
594
+ "dependencies": {
595
+ "accepts": "^2.0.0",
596
+ "body-parser": "^2.2.1",
597
+ "content-disposition": "^1.0.0",
598
+ "content-type": "^1.0.5",
599
+ "cookie": "^0.7.1",
600
+ "cookie-signature": "^1.2.1",
601
+ "debug": "^4.4.0",
602
+ "depd": "^2.0.0",
603
+ "encodeurl": "^2.0.0",
604
+ "escape-html": "^1.0.3",
605
+ "etag": "^1.8.1",
606
+ "finalhandler": "^2.1.0",
607
+ "fresh": "^2.0.0",
608
+ "http-errors": "^2.0.0",
609
+ "merge-descriptors": "^2.0.0",
610
+ "mime-types": "^3.0.0",
611
+ "on-finished": "^2.4.1",
612
+ "once": "^1.4.0",
613
+ "parseurl": "^1.3.3",
614
+ "proxy-addr": "^2.0.7",
615
+ "qs": "^6.14.0",
616
+ "range-parser": "^1.2.1",
617
+ "router": "^2.2.0",
618
+ "send": "^1.1.0",
619
+ "serve-static": "^2.2.0",
620
+ "statuses": "^2.0.1",
621
+ "type-is": "^2.0.1",
622
+ "vary": "^1.1.2"
623
+ },
624
+ "engines": {
625
+ "node": ">= 18"
626
+ },
627
+ "funding": {
628
+ "type": "opencollective",
629
+ "url": "https://opencollective.com/express"
630
+ }
631
+ },
632
+ "node_modules/fill-range": {
633
+ "version": "7.1.1",
634
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
635
+ "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
636
+ "dev": true,
637
+ "license": "MIT",
638
+ "dependencies": {
639
+ "to-regex-range": "^5.0.1"
640
+ },
641
+ "engines": {
642
+ "node": ">=8"
643
+ }
644
+ },
645
+ "node_modules/finalhandler": {
646
+ "version": "2.1.1",
647
+ "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-2.1.1.tgz",
648
+ "integrity": "sha512-S8KoZgRZN+a5rNwqTxlZZePjT/4cnm0ROV70LedRHZ0p8u9fRID0hJUZQpkKLzro8LfmC8sx23bY6tVNxv8pQA==",
649
+ "license": "MIT",
650
+ "dependencies": {
651
+ "debug": "^4.4.0",
652
+ "encodeurl": "^2.0.0",
653
+ "escape-html": "^1.0.3",
654
+ "on-finished": "^2.4.1",
655
+ "parseurl": "^1.3.3",
656
+ "statuses": "^2.0.1"
657
+ },
658
+ "engines": {
659
+ "node": ">= 18.0.0"
660
+ },
661
+ "funding": {
662
+ "type": "opencollective",
663
+ "url": "https://opencollective.com/express"
664
+ }
665
+ },
666
+ "node_modules/forwarded": {
667
+ "version": "0.2.0",
668
+ "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz",
669
+ "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==",
670
+ "license": "MIT",
671
+ "engines": {
672
+ "node": ">= 0.6"
673
+ }
674
+ },
675
+ "node_modules/fresh": {
676
+ "version": "2.0.0",
677
+ "resolved": "https://registry.npmjs.org/fresh/-/fresh-2.0.0.tgz",
678
+ "integrity": "sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==",
679
+ "license": "MIT",
680
+ "engines": {
681
+ "node": ">= 0.8"
682
+ }
683
+ },
684
+ "node_modules/fsevents": {
685
+ "version": "2.3.3",
686
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
687
+ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
688
+ "dev": true,
689
+ "hasInstallScript": true,
690
+ "license": "MIT",
691
+ "optional": true,
692
+ "os": [
693
+ "darwin"
694
+ ],
695
+ "engines": {
696
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
697
+ }
698
+ },
699
+ "node_modules/function-bind": {
700
+ "version": "1.1.2",
701
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
702
+ "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
703
+ "license": "MIT",
704
+ "funding": {
705
+ "url": "https://github.com/sponsors/ljharb"
706
+ }
707
+ },
708
+ "node_modules/get-intrinsic": {
709
+ "version": "1.3.0",
710
+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
711
+ "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
712
+ "license": "MIT",
713
+ "dependencies": {
714
+ "call-bind-apply-helpers": "^1.0.2",
715
+ "es-define-property": "^1.0.1",
716
+ "es-errors": "^1.3.0",
717
+ "es-object-atoms": "^1.1.1",
718
+ "function-bind": "^1.1.2",
719
+ "get-proto": "^1.0.1",
720
+ "gopd": "^1.2.0",
721
+ "has-symbols": "^1.1.0",
722
+ "hasown": "^2.0.2",
723
+ "math-intrinsics": "^1.1.0"
724
+ },
725
+ "engines": {
726
+ "node": ">= 0.4"
727
+ },
728
+ "funding": {
729
+ "url": "https://github.com/sponsors/ljharb"
730
+ }
731
+ },
732
+ "node_modules/get-proto": {
733
+ "version": "1.0.1",
734
+ "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
735
+ "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
736
+ "license": "MIT",
737
+ "dependencies": {
738
+ "dunder-proto": "^1.0.1",
739
+ "es-object-atoms": "^1.0.0"
740
+ },
741
+ "engines": {
742
+ "node": ">= 0.4"
743
+ }
744
+ },
745
+ "node_modules/glob-parent": {
746
+ "version": "5.1.2",
747
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
748
+ "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
749
+ "dev": true,
750
+ "license": "ISC",
751
+ "dependencies": {
752
+ "is-glob": "^4.0.1"
753
+ },
754
+ "engines": {
755
+ "node": ">= 6"
756
+ }
757
+ },
758
+ "node_modules/gopd": {
759
+ "version": "1.2.0",
760
+ "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
761
+ "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
762
+ "license": "MIT",
763
+ "engines": {
764
+ "node": ">= 0.4"
765
+ },
766
+ "funding": {
767
+ "url": "https://github.com/sponsors/ljharb"
768
+ }
769
+ },
770
+ "node_modules/has-flag": {
771
+ "version": "3.0.0",
772
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
773
+ "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
774
+ "dev": true,
775
+ "license": "MIT",
776
+ "engines": {
777
+ "node": ">=4"
778
+ }
779
+ },
780
+ "node_modules/has-symbols": {
781
+ "version": "1.1.0",
782
+ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
783
+ "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
784
+ "license": "MIT",
785
+ "engines": {
786
+ "node": ">= 0.4"
787
+ },
788
+ "funding": {
789
+ "url": "https://github.com/sponsors/ljharb"
790
+ }
791
+ },
792
+ "node_modules/hasown": {
793
+ "version": "2.0.2",
794
+ "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
795
+ "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
796
+ "license": "MIT",
797
+ "dependencies": {
798
+ "function-bind": "^1.1.2"
799
+ },
800
+ "engines": {
801
+ "node": ">= 0.4"
802
+ }
803
+ },
804
+ "node_modules/http-errors": {
805
+ "version": "2.0.1",
806
+ "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.1.tgz",
807
+ "integrity": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==",
808
+ "license": "MIT",
809
+ "dependencies": {
810
+ "depd": "~2.0.0",
811
+ "inherits": "~2.0.4",
812
+ "setprototypeof": "~1.2.0",
813
+ "statuses": "~2.0.2",
814
+ "toidentifier": "~1.0.1"
815
+ },
816
+ "engines": {
817
+ "node": ">= 0.8"
818
+ },
819
+ "funding": {
820
+ "type": "opencollective",
821
+ "url": "https://opencollective.com/express"
822
+ }
823
+ },
824
+ "node_modules/iconv-lite": {
825
+ "version": "0.7.2",
826
+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.7.2.tgz",
827
+ "integrity": "sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw==",
828
+ "license": "MIT",
829
+ "dependencies": {
830
+ "safer-buffer": ">= 2.1.2 < 3.0.0"
831
+ },
832
+ "engines": {
833
+ "node": ">=0.10.0"
834
+ },
835
+ "funding": {
836
+ "type": "opencollective",
837
+ "url": "https://opencollective.com/express"
838
+ }
839
+ },
840
+ "node_modules/ignore-by-default": {
841
+ "version": "1.0.1",
842
+ "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz",
843
+ "integrity": "sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==",
844
+ "dev": true,
845
+ "license": "ISC"
846
+ },
847
+ "node_modules/inherits": {
848
+ "version": "2.0.4",
849
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
850
+ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
851
+ "license": "ISC"
852
+ },
853
+ "node_modules/ipaddr.js": {
854
+ "version": "1.9.1",
855
+ "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
856
+ "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==",
857
+ "license": "MIT",
858
+ "engines": {
859
+ "node": ">= 0.10"
860
+ }
861
+ },
862
+ "node_modules/is-binary-path": {
863
+ "version": "2.1.0",
864
+ "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
865
+ "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
866
+ "dev": true,
867
+ "license": "MIT",
868
+ "dependencies": {
869
+ "binary-extensions": "^2.0.0"
870
+ },
871
+ "engines": {
872
+ "node": ">=8"
873
+ }
874
+ },
875
+ "node_modules/is-extglob": {
876
+ "version": "2.1.1",
877
+ "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
878
+ "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
879
+ "dev": true,
880
+ "license": "MIT",
881
+ "engines": {
882
+ "node": ">=0.10.0"
883
+ }
884
+ },
885
+ "node_modules/is-glob": {
886
+ "version": "4.0.3",
887
+ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
888
+ "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
889
+ "dev": true,
890
+ "license": "MIT",
891
+ "dependencies": {
892
+ "is-extglob": "^2.1.1"
893
+ },
894
+ "engines": {
895
+ "node": ">=0.10.0"
896
+ }
897
+ },
898
+ "node_modules/is-number": {
899
+ "version": "7.0.0",
900
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
901
+ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
902
+ "dev": true,
903
+ "license": "MIT",
904
+ "engines": {
905
+ "node": ">=0.12.0"
906
+ }
907
+ },
908
+ "node_modules/is-promise": {
909
+ "version": "4.0.0",
910
+ "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-4.0.0.tgz",
911
+ "integrity": "sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==",
912
+ "license": "MIT"
913
+ },
914
+ "node_modules/math-intrinsics": {
915
+ "version": "1.1.0",
916
+ "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
917
+ "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
918
+ "license": "MIT",
919
+ "engines": {
920
+ "node": ">= 0.4"
921
+ }
922
+ },
923
+ "node_modules/media-typer": {
924
+ "version": "1.1.0",
925
+ "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-1.1.0.tgz",
926
+ "integrity": "sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==",
927
+ "license": "MIT",
928
+ "engines": {
929
+ "node": ">= 0.8"
930
+ }
931
+ },
932
+ "node_modules/merge-descriptors": {
933
+ "version": "2.0.0",
934
+ "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-2.0.0.tgz",
935
+ "integrity": "sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==",
936
+ "license": "MIT",
937
+ "engines": {
938
+ "node": ">=18"
939
+ },
940
+ "funding": {
941
+ "url": "https://github.com/sponsors/sindresorhus"
942
+ }
943
+ },
944
+ "node_modules/mime-db": {
945
+ "version": "1.54.0",
946
+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.54.0.tgz",
947
+ "integrity": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==",
948
+ "license": "MIT",
949
+ "engines": {
950
+ "node": ">= 0.6"
951
+ }
952
+ },
953
+ "node_modules/mime-types": {
954
+ "version": "3.0.2",
955
+ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-3.0.2.tgz",
956
+ "integrity": "sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==",
957
+ "license": "MIT",
958
+ "dependencies": {
959
+ "mime-db": "^1.54.0"
960
+ },
961
+ "engines": {
962
+ "node": ">=18"
963
+ },
964
+ "funding": {
965
+ "type": "opencollective",
966
+ "url": "https://opencollective.com/express"
967
+ }
968
+ },
969
+ "node_modules/minimatch": {
970
+ "version": "10.2.4",
971
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.4.tgz",
972
+ "integrity": "sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg==",
973
+ "dev": true,
974
+ "license": "BlueOak-1.0.0",
975
+ "dependencies": {
976
+ "brace-expansion": "^5.0.2"
977
+ },
978
+ "engines": {
979
+ "node": "18 || 20 || >=22"
980
+ },
981
+ "funding": {
982
+ "url": "https://github.com/sponsors/isaacs"
983
+ }
984
+ },
985
+ "node_modules/ms": {
986
+ "version": "2.1.3",
987
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
988
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
989
+ "license": "MIT"
990
+ },
991
+ "node_modules/negotiator": {
992
+ "version": "1.0.0",
993
+ "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-1.0.0.tgz",
994
+ "integrity": "sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==",
995
+ "license": "MIT",
996
+ "engines": {
997
+ "node": ">= 0.6"
998
+ }
999
+ },
1000
+ "node_modules/nodemon": {
1001
+ "version": "3.1.14",
1002
+ "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-3.1.14.tgz",
1003
+ "integrity": "sha512-jakjZi93UtB3jHMWsXL68FXSAosbLfY0In5gtKq3niLSkrWznrVBzXFNOEMJUfc9+Ke7SHWoAZsiMkNP3vq6Jw==",
1004
+ "dev": true,
1005
+ "license": "MIT",
1006
+ "dependencies": {
1007
+ "chokidar": "^3.5.2",
1008
+ "debug": "^4",
1009
+ "ignore-by-default": "^1.0.1",
1010
+ "minimatch": "^10.2.1",
1011
+ "pstree.remy": "^1.1.8",
1012
+ "semver": "^7.5.3",
1013
+ "simple-update-notifier": "^2.0.0",
1014
+ "supports-color": "^5.5.0",
1015
+ "touch": "^3.1.0",
1016
+ "undefsafe": "^2.0.5"
1017
+ },
1018
+ "bin": {
1019
+ "nodemon": "bin/nodemon.js"
1020
+ },
1021
+ "engines": {
1022
+ "node": ">=10"
1023
+ },
1024
+ "funding": {
1025
+ "type": "opencollective",
1026
+ "url": "https://opencollective.com/nodemon"
1027
+ }
1028
+ },
1029
+ "node_modules/normalize-path": {
1030
+ "version": "3.0.0",
1031
+ "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
1032
+ "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
1033
+ "dev": true,
1034
+ "license": "MIT",
1035
+ "engines": {
1036
+ "node": ">=0.10.0"
1037
+ }
1038
+ },
1039
+ "node_modules/object-assign": {
1040
+ "version": "4.1.1",
1041
+ "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
1042
+ "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
1043
+ "license": "MIT",
1044
+ "engines": {
1045
+ "node": ">=0.10.0"
1046
+ }
1047
+ },
1048
+ "node_modules/object-inspect": {
1049
+ "version": "1.13.4",
1050
+ "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz",
1051
+ "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==",
1052
+ "license": "MIT",
1053
+ "engines": {
1054
+ "node": ">= 0.4"
1055
+ },
1056
+ "funding": {
1057
+ "url": "https://github.com/sponsors/ljharb"
1058
+ }
1059
+ },
1060
+ "node_modules/on-finished": {
1061
+ "version": "2.4.1",
1062
+ "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
1063
+ "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
1064
+ "license": "MIT",
1065
+ "dependencies": {
1066
+ "ee-first": "1.1.1"
1067
+ },
1068
+ "engines": {
1069
+ "node": ">= 0.8"
1070
+ }
1071
+ },
1072
+ "node_modules/once": {
1073
+ "version": "1.4.0",
1074
+ "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
1075
+ "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
1076
+ "license": "ISC",
1077
+ "dependencies": {
1078
+ "wrappy": "1"
1079
+ }
1080
+ },
1081
+ "node_modules/parseurl": {
1082
+ "version": "1.3.3",
1083
+ "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
1084
+ "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
1085
+ "license": "MIT",
1086
+ "engines": {
1087
+ "node": ">= 0.8"
1088
+ }
1089
+ },
1090
+ "node_modules/path-to-regexp": {
1091
+ "version": "8.4.0",
1092
+ "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-8.4.0.tgz",
1093
+ "integrity": "sha512-PuseHIvAnz3bjrM2rGJtSgo1zjgxapTLZ7x2pjhzWwlp4SJQgK3f3iZIQwkpEnBaKz6seKBADpM4B4ySkuYypg==",
1094
+ "license": "MIT",
1095
+ "funding": {
1096
+ "type": "opencollective",
1097
+ "url": "https://opencollective.com/express"
1098
+ }
1099
+ },
1100
+ "node_modules/picomatch": {
1101
+ "version": "2.3.2",
1102
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.2.tgz",
1103
+ "integrity": "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==",
1104
+ "dev": true,
1105
+ "license": "MIT",
1106
+ "engines": {
1107
+ "node": ">=8.6"
1108
+ },
1109
+ "funding": {
1110
+ "url": "https://github.com/sponsors/jonschlinkert"
1111
+ }
1112
+ },
1113
+ "node_modules/portfinder": {
1114
+ "version": "1.0.38",
1115
+ "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.38.tgz",
1116
+ "integrity": "sha512-rEwq/ZHlJIKw++XtLAO8PPuOQA/zaPJOZJ37BVuN97nLpMJeuDVLVGRwbFoBgLudgdTMP2hdRJP++H+8QOA3vg==",
1117
+ "license": "MIT",
1118
+ "dependencies": {
1119
+ "async": "^3.2.6",
1120
+ "debug": "^4.3.6"
1121
+ },
1122
+ "engines": {
1123
+ "node": ">= 10.12"
1124
+ }
1125
+ },
1126
+ "node_modules/proxy-addr": {
1127
+ "version": "2.0.7",
1128
+ "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz",
1129
+ "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==",
1130
+ "license": "MIT",
1131
+ "dependencies": {
1132
+ "forwarded": "0.2.0",
1133
+ "ipaddr.js": "1.9.1"
1134
+ },
1135
+ "engines": {
1136
+ "node": ">= 0.10"
1137
+ }
1138
+ },
1139
+ "node_modules/pstree.remy": {
1140
+ "version": "1.1.8",
1141
+ "resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz",
1142
+ "integrity": "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==",
1143
+ "dev": true,
1144
+ "license": "MIT"
1145
+ },
1146
+ "node_modules/qs": {
1147
+ "version": "6.15.0",
1148
+ "resolved": "https://registry.npmjs.org/qs/-/qs-6.15.0.tgz",
1149
+ "integrity": "sha512-mAZTtNCeetKMH+pSjrb76NAM8V9a05I9aBZOHztWy/UqcJdQYNsf59vrRKWnojAT9Y+GbIvoTBC++CPHqpDBhQ==",
1150
+ "license": "BSD-3-Clause",
1151
+ "dependencies": {
1152
+ "side-channel": "^1.1.0"
1153
+ },
1154
+ "engines": {
1155
+ "node": ">=0.6"
1156
+ },
1157
+ "funding": {
1158
+ "url": "https://github.com/sponsors/ljharb"
1159
+ }
1160
+ },
1161
+ "node_modules/range-parser": {
1162
+ "version": "1.2.1",
1163
+ "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
1164
+ "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
1165
+ "license": "MIT",
1166
+ "engines": {
1167
+ "node": ">= 0.6"
1168
+ }
1169
+ },
1170
+ "node_modules/raw-body": {
1171
+ "version": "3.0.2",
1172
+ "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-3.0.2.tgz",
1173
+ "integrity": "sha512-K5zQjDllxWkf7Z5xJdV0/B0WTNqx6vxG70zJE4N0kBs4LovmEYWJzQGxC9bS9RAKu3bgM40lrd5zoLJ12MQ5BA==",
1174
+ "license": "MIT",
1175
+ "dependencies": {
1176
+ "bytes": "~3.1.2",
1177
+ "http-errors": "~2.0.1",
1178
+ "iconv-lite": "~0.7.0",
1179
+ "unpipe": "~1.0.0"
1180
+ },
1181
+ "engines": {
1182
+ "node": ">= 0.10"
1183
+ }
1184
+ },
1185
+ "node_modules/readdirp": {
1186
+ "version": "3.6.0",
1187
+ "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
1188
+ "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
1189
+ "dev": true,
1190
+ "license": "MIT",
1191
+ "dependencies": {
1192
+ "picomatch": "^2.2.1"
1193
+ },
1194
+ "engines": {
1195
+ "node": ">=8.10.0"
1196
+ }
1197
+ },
1198
+ "node_modules/router": {
1199
+ "version": "2.2.0",
1200
+ "resolved": "https://registry.npmjs.org/router/-/router-2.2.0.tgz",
1201
+ "integrity": "sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==",
1202
+ "license": "MIT",
1203
+ "dependencies": {
1204
+ "debug": "^4.4.0",
1205
+ "depd": "^2.0.0",
1206
+ "is-promise": "^4.0.0",
1207
+ "parseurl": "^1.3.3",
1208
+ "path-to-regexp": "^8.0.0"
1209
+ },
1210
+ "engines": {
1211
+ "node": ">= 18"
1212
+ }
1213
+ },
1214
+ "node_modules/safer-buffer": {
1215
+ "version": "2.1.2",
1216
+ "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
1217
+ "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
1218
+ "license": "MIT"
1219
+ },
1220
+ "node_modules/semver": {
1221
+ "version": "7.7.4",
1222
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz",
1223
+ "integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==",
1224
+ "dev": true,
1225
+ "license": "ISC",
1226
+ "bin": {
1227
+ "semver": "bin/semver.js"
1228
+ },
1229
+ "engines": {
1230
+ "node": ">=10"
1231
+ }
1232
+ },
1233
+ "node_modules/send": {
1234
+ "version": "1.2.1",
1235
+ "resolved": "https://registry.npmjs.org/send/-/send-1.2.1.tgz",
1236
+ "integrity": "sha512-1gnZf7DFcoIcajTjTwjwuDjzuz4PPcY2StKPlsGAQ1+YH20IRVrBaXSWmdjowTJ6u8Rc01PoYOGHXfP1mYcZNQ==",
1237
+ "license": "MIT",
1238
+ "dependencies": {
1239
+ "debug": "^4.4.3",
1240
+ "encodeurl": "^2.0.0",
1241
+ "escape-html": "^1.0.3",
1242
+ "etag": "^1.8.1",
1243
+ "fresh": "^2.0.0",
1244
+ "http-errors": "^2.0.1",
1245
+ "mime-types": "^3.0.2",
1246
+ "ms": "^2.1.3",
1247
+ "on-finished": "^2.4.1",
1248
+ "range-parser": "^1.2.1",
1249
+ "statuses": "^2.0.2"
1250
+ },
1251
+ "engines": {
1252
+ "node": ">= 18"
1253
+ },
1254
+ "funding": {
1255
+ "type": "opencollective",
1256
+ "url": "https://opencollective.com/express"
1257
+ }
1258
+ },
1259
+ "node_modules/serve-static": {
1260
+ "version": "2.2.1",
1261
+ "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-2.2.1.tgz",
1262
+ "integrity": "sha512-xRXBn0pPqQTVQiC8wyQrKs2MOlX24zQ0POGaj0kultvoOCstBQM5yvOhAVSUwOMjQtTvsPWoNCHfPGwaaQJhTw==",
1263
+ "license": "MIT",
1264
+ "dependencies": {
1265
+ "encodeurl": "^2.0.0",
1266
+ "escape-html": "^1.0.3",
1267
+ "parseurl": "^1.3.3",
1268
+ "send": "^1.2.0"
1269
+ },
1270
+ "engines": {
1271
+ "node": ">= 18"
1272
+ },
1273
+ "funding": {
1274
+ "type": "opencollective",
1275
+ "url": "https://opencollective.com/express"
1276
+ }
1277
+ },
1278
+ "node_modules/setprototypeof": {
1279
+ "version": "1.2.0",
1280
+ "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
1281
+ "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==",
1282
+ "license": "ISC"
1283
+ },
1284
+ "node_modules/side-channel": {
1285
+ "version": "1.1.0",
1286
+ "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz",
1287
+ "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
1288
+ "license": "MIT",
1289
+ "dependencies": {
1290
+ "es-errors": "^1.3.0",
1291
+ "object-inspect": "^1.13.3",
1292
+ "side-channel-list": "^1.0.0",
1293
+ "side-channel-map": "^1.0.1",
1294
+ "side-channel-weakmap": "^1.0.2"
1295
+ },
1296
+ "engines": {
1297
+ "node": ">= 0.4"
1298
+ },
1299
+ "funding": {
1300
+ "url": "https://github.com/sponsors/ljharb"
1301
+ }
1302
+ },
1303
+ "node_modules/side-channel-list": {
1304
+ "version": "1.0.0",
1305
+ "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz",
1306
+ "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==",
1307
+ "license": "MIT",
1308
+ "dependencies": {
1309
+ "es-errors": "^1.3.0",
1310
+ "object-inspect": "^1.13.3"
1311
+ },
1312
+ "engines": {
1313
+ "node": ">= 0.4"
1314
+ },
1315
+ "funding": {
1316
+ "url": "https://github.com/sponsors/ljharb"
1317
+ }
1318
+ },
1319
+ "node_modules/side-channel-map": {
1320
+ "version": "1.0.1",
1321
+ "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
1322
+ "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
1323
+ "license": "MIT",
1324
+ "dependencies": {
1325
+ "call-bound": "^1.0.2",
1326
+ "es-errors": "^1.3.0",
1327
+ "get-intrinsic": "^1.2.5",
1328
+ "object-inspect": "^1.13.3"
1329
+ },
1330
+ "engines": {
1331
+ "node": ">= 0.4"
1332
+ },
1333
+ "funding": {
1334
+ "url": "https://github.com/sponsors/ljharb"
1335
+ }
1336
+ },
1337
+ "node_modules/side-channel-weakmap": {
1338
+ "version": "1.0.2",
1339
+ "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
1340
+ "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
1341
+ "license": "MIT",
1342
+ "dependencies": {
1343
+ "call-bound": "^1.0.2",
1344
+ "es-errors": "^1.3.0",
1345
+ "get-intrinsic": "^1.2.5",
1346
+ "object-inspect": "^1.13.3",
1347
+ "side-channel-map": "^1.0.1"
1348
+ },
1349
+ "engines": {
1350
+ "node": ">= 0.4"
1351
+ },
1352
+ "funding": {
1353
+ "url": "https://github.com/sponsors/ljharb"
1354
+ }
1355
+ },
1356
+ "node_modules/simple-update-notifier": {
1357
+ "version": "2.0.0",
1358
+ "resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz",
1359
+ "integrity": "sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==",
1360
+ "dev": true,
1361
+ "license": "MIT",
1362
+ "dependencies": {
1363
+ "semver": "^7.5.3"
1364
+ },
1365
+ "engines": {
1366
+ "node": ">=10"
1367
+ }
1368
+ },
1369
+ "node_modules/statuses": {
1370
+ "version": "2.0.2",
1371
+ "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.2.tgz",
1372
+ "integrity": "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==",
1373
+ "license": "MIT",
1374
+ "engines": {
1375
+ "node": ">= 0.8"
1376
+ }
1377
+ },
1378
+ "node_modules/supports-color": {
1379
+ "version": "5.5.0",
1380
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
1381
+ "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
1382
+ "dev": true,
1383
+ "license": "MIT",
1384
+ "dependencies": {
1385
+ "has-flag": "^3.0.0"
1386
+ },
1387
+ "engines": {
1388
+ "node": ">=4"
1389
+ }
1390
+ },
1391
+ "node_modules/to-regex-range": {
1392
+ "version": "5.0.1",
1393
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
1394
+ "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
1395
+ "dev": true,
1396
+ "license": "MIT",
1397
+ "dependencies": {
1398
+ "is-number": "^7.0.0"
1399
+ },
1400
+ "engines": {
1401
+ "node": ">=8.0"
1402
+ }
1403
+ },
1404
+ "node_modules/toidentifier": {
1405
+ "version": "1.0.1",
1406
+ "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz",
1407
+ "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==",
1408
+ "license": "MIT",
1409
+ "engines": {
1410
+ "node": ">=0.6"
1411
+ }
1412
+ },
1413
+ "node_modules/touch": {
1414
+ "version": "3.1.1",
1415
+ "resolved": "https://registry.npmjs.org/touch/-/touch-3.1.1.tgz",
1416
+ "integrity": "sha512-r0eojU4bI8MnHr8c5bNo7lJDdI2qXlWWJk6a9EAFG7vbhTjElYhBVS3/miuE0uOuoLdb8Mc/rVfsmm6eo5o9GA==",
1417
+ "dev": true,
1418
+ "license": "ISC",
1419
+ "bin": {
1420
+ "nodetouch": "bin/nodetouch.js"
1421
+ }
1422
+ },
1423
+ "node_modules/type-is": {
1424
+ "version": "2.0.1",
1425
+ "resolved": "https://registry.npmjs.org/type-is/-/type-is-2.0.1.tgz",
1426
+ "integrity": "sha512-OZs6gsjF4vMp32qrCbiVSkrFmXtG/AZhY3t0iAMrMBiAZyV9oALtXO8hsrHbMXF9x6L3grlFuwW2oAz7cav+Gw==",
1427
+ "license": "MIT",
1428
+ "dependencies": {
1429
+ "content-type": "^1.0.5",
1430
+ "media-typer": "^1.1.0",
1431
+ "mime-types": "^3.0.0"
1432
+ },
1433
+ "engines": {
1434
+ "node": ">= 0.6"
1435
+ }
1436
+ },
1437
+ "node_modules/undefsafe": {
1438
+ "version": "2.0.5",
1439
+ "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz",
1440
+ "integrity": "sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==",
1441
+ "dev": true,
1442
+ "license": "MIT"
1443
+ },
1444
+ "node_modules/unpipe": {
1445
+ "version": "1.0.0",
1446
+ "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
1447
+ "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==",
1448
+ "license": "MIT",
1449
+ "engines": {
1450
+ "node": ">= 0.8"
1451
+ }
1452
+ },
1453
+ "node_modules/vary": {
1454
+ "version": "1.1.2",
1455
+ "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
1456
+ "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==",
1457
+ "license": "MIT",
1458
+ "engines": {
1459
+ "node": ">= 0.8"
1460
+ }
1461
+ },
1462
+ "node_modules/wrappy": {
1463
+ "version": "1.0.2",
1464
+ "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
1465
+ "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
1466
+ "license": "ISC"
1467
+ }
1468
+ }
1469
+ }
package.json ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "project-runner-server",
3
+ "version": "2.0.0",
4
+ "description": "Project runner server with tunnel support (Cloudflare + ngrok)",
5
+ "main": "server.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1",
8
+ "start": "node server.js",
9
+ "dev": "nodemon"
10
+ },
11
+ "keywords": ["project-runner", "tunnel", "cloudflare", "ngrok"],
12
+ "author": "",
13
+ "license": "ISC",
14
+ "type": "module",
15
+ "dependencies": {
16
+ "@ngrok/ngrok": "^1.7.0",
17
+ "cors": "^2.8.6",
18
+ "dotenv": "^16.4.7",
19
+ "express": "^5.2.1",
20
+ "portfinder": "^1.0.32"
21
+ },
22
+ "devDependencies": {
23
+ "nodemon": "^3.1.0"
24
+ }
25
+ }
projects/project1/.gitignore ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Logs
2
+ logs
3
+ *.log
4
+ npm-debug.log*
5
+ yarn-debug.log*
6
+ yarn-error.log*
7
+ pnpm-debug.log*
8
+ lerna-debug.log*
9
+
10
+ node_modules
11
+ dist
12
+ dist-ssr
13
+ *.local
14
+
15
+ # Editor directories and files
16
+ .vscode/*
17
+ !.vscode/extensions.json
18
+ .idea
19
+ .DS_Store
20
+ *.suo
21
+ *.ntvs*
22
+ *.njsproj
23
+ *.sln
24
+ *.sw?
projects/project1/.project-lock ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "npm": true
3
+ }
projects/project1/README.md ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # React + Vite
2
+
3
+ This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
4
+
5
+ Currently, two official plugins are available:
6
+
7
+ - [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react) uses [Oxc](https://oxc.rs)
8
+ - [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react-swc) uses [SWC](https://swc.rs/)
9
+
10
+ ## React Compiler
11
+
12
+ The React Compiler is not enabled on this template because of its impact on dev & build performances. To add it, see [this documentation](https://react.dev/learn/react-compiler/installation).
13
+
14
+ ## Expanding the ESLint configuration
15
+
16
+ If you are developing a production application, we recommend using TypeScript with type-aware lint rules enabled. Check out the [TS template](https://github.com/vitejs/vite/tree/main/packages/create-vite/template-react-ts) for information on how to integrate TypeScript and [`typescript-eslint`](https://typescript-eslint.io) in your project.
projects/project1/eslint.config.js ADDED
@@ -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
+ ])
projects/project1/index.html ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <link rel="icon" type="image/svg+xml" href="/favicon.svg" />
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
+ <title>project1</title>
8
+ </head>
9
+ <body>
10
+ <div id="root"></div>
11
+ <script type="module" src="/src/main.jsx"></script>
12
+ </body>
13
+ </html>
projects/project1/package-lock.json ADDED
@@ -0,0 +1,2604 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "project1",
3
+ "version": "0.0.0",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "project1",
9
+ "version": "0.0.0",
10
+ "dependencies": {
11
+ "react": "^19.2.4",
12
+ "react-dom": "^19.2.4"
13
+ },
14
+ "devDependencies": {
15
+ "@eslint/js": "^9.39.4",
16
+ "@types/react": "^19.2.14",
17
+ "@types/react-dom": "^19.2.3",
18
+ "@vitejs/plugin-react": "^6.0.1",
19
+ "eslint": "^9.39.4",
20
+ "eslint-plugin-react-hooks": "^7.0.1",
21
+ "eslint-plugin-react-refresh": "^0.5.2",
22
+ "globals": "^17.4.0",
23
+ "vite": "^8.0.1"
24
+ }
25
+ },
26
+ "node_modules/@babel/code-frame": {
27
+ "version": "7.29.0",
28
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.0.tgz",
29
+ "integrity": "sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==",
30
+ "dev": true,
31
+ "license": "MIT",
32
+ "dependencies": {
33
+ "@babel/helper-validator-identifier": "^7.28.5",
34
+ "js-tokens": "^4.0.0",
35
+ "picocolors": "^1.1.1"
36
+ },
37
+ "engines": {
38
+ "node": ">=6.9.0"
39
+ }
40
+ },
41
+ "node_modules/@babel/compat-data": {
42
+ "version": "7.29.0",
43
+ "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.29.0.tgz",
44
+ "integrity": "sha512-T1NCJqT/j9+cn8fvkt7jtwbLBfLC/1y1c7NtCeXFRgzGTsafi68MRv8yzkYSapBnFA6L3U2VSc02ciDzoAJhJg==",
45
+ "dev": true,
46
+ "license": "MIT",
47
+ "engines": {
48
+ "node": ">=6.9.0"
49
+ }
50
+ },
51
+ "node_modules/@babel/core": {
52
+ "version": "7.29.0",
53
+ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.29.0.tgz",
54
+ "integrity": "sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==",
55
+ "dev": true,
56
+ "license": "MIT",
57
+ "dependencies": {
58
+ "@babel/code-frame": "^7.29.0",
59
+ "@babel/generator": "^7.29.0",
60
+ "@babel/helper-compilation-targets": "^7.28.6",
61
+ "@babel/helper-module-transforms": "^7.28.6",
62
+ "@babel/helpers": "^7.28.6",
63
+ "@babel/parser": "^7.29.0",
64
+ "@babel/template": "^7.28.6",
65
+ "@babel/traverse": "^7.29.0",
66
+ "@babel/types": "^7.29.0",
67
+ "@jridgewell/remapping": "^2.3.5",
68
+ "convert-source-map": "^2.0.0",
69
+ "debug": "^4.1.0",
70
+ "gensync": "^1.0.0-beta.2",
71
+ "json5": "^2.2.3",
72
+ "semver": "^6.3.1"
73
+ },
74
+ "engines": {
75
+ "node": ">=6.9.0"
76
+ },
77
+ "funding": {
78
+ "type": "opencollective",
79
+ "url": "https://opencollective.com/babel"
80
+ }
81
+ },
82
+ "node_modules/@babel/generator": {
83
+ "version": "7.29.1",
84
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.1.tgz",
85
+ "integrity": "sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==",
86
+ "dev": true,
87
+ "license": "MIT",
88
+ "dependencies": {
89
+ "@babel/parser": "^7.29.0",
90
+ "@babel/types": "^7.29.0",
91
+ "@jridgewell/gen-mapping": "^0.3.12",
92
+ "@jridgewell/trace-mapping": "^0.3.28",
93
+ "jsesc": "^3.0.2"
94
+ },
95
+ "engines": {
96
+ "node": ">=6.9.0"
97
+ }
98
+ },
99
+ "node_modules/@babel/helper-compilation-targets": {
100
+ "version": "7.28.6",
101
+ "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.28.6.tgz",
102
+ "integrity": "sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==",
103
+ "dev": true,
104
+ "license": "MIT",
105
+ "dependencies": {
106
+ "@babel/compat-data": "^7.28.6",
107
+ "@babel/helper-validator-option": "^7.27.1",
108
+ "browserslist": "^4.24.0",
109
+ "lru-cache": "^5.1.1",
110
+ "semver": "^6.3.1"
111
+ },
112
+ "engines": {
113
+ "node": ">=6.9.0"
114
+ }
115
+ },
116
+ "node_modules/@babel/helper-globals": {
117
+ "version": "7.28.0",
118
+ "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz",
119
+ "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==",
120
+ "dev": true,
121
+ "license": "MIT",
122
+ "engines": {
123
+ "node": ">=6.9.0"
124
+ }
125
+ },
126
+ "node_modules/@babel/helper-module-imports": {
127
+ "version": "7.28.6",
128
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.28.6.tgz",
129
+ "integrity": "sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==",
130
+ "dev": true,
131
+ "license": "MIT",
132
+ "dependencies": {
133
+ "@babel/traverse": "^7.28.6",
134
+ "@babel/types": "^7.28.6"
135
+ },
136
+ "engines": {
137
+ "node": ">=6.9.0"
138
+ }
139
+ },
140
+ "node_modules/@babel/helper-module-transforms": {
141
+ "version": "7.28.6",
142
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.6.tgz",
143
+ "integrity": "sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==",
144
+ "dev": true,
145
+ "license": "MIT",
146
+ "dependencies": {
147
+ "@babel/helper-module-imports": "^7.28.6",
148
+ "@babel/helper-validator-identifier": "^7.28.5",
149
+ "@babel/traverse": "^7.28.6"
150
+ },
151
+ "engines": {
152
+ "node": ">=6.9.0"
153
+ },
154
+ "peerDependencies": {
155
+ "@babel/core": "^7.0.0"
156
+ }
157
+ },
158
+ "node_modules/@babel/helper-string-parser": {
159
+ "version": "7.27.1",
160
+ "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
161
+ "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
162
+ "dev": true,
163
+ "license": "MIT",
164
+ "engines": {
165
+ "node": ">=6.9.0"
166
+ }
167
+ },
168
+ "node_modules/@babel/helper-validator-identifier": {
169
+ "version": "7.28.5",
170
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz",
171
+ "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==",
172
+ "dev": true,
173
+ "license": "MIT",
174
+ "engines": {
175
+ "node": ">=6.9.0"
176
+ }
177
+ },
178
+ "node_modules/@babel/helper-validator-option": {
179
+ "version": "7.27.1",
180
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz",
181
+ "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==",
182
+ "dev": true,
183
+ "license": "MIT",
184
+ "engines": {
185
+ "node": ">=6.9.0"
186
+ }
187
+ },
188
+ "node_modules/@babel/helpers": {
189
+ "version": "7.29.2",
190
+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.29.2.tgz",
191
+ "integrity": "sha512-HoGuUs4sCZNezVEKdVcwqmZN8GoHirLUcLaYVNBK2J0DadGtdcqgr3BCbvH8+XUo4NGjNl3VOtSjEKNzqfFgKw==",
192
+ "dev": true,
193
+ "license": "MIT",
194
+ "dependencies": {
195
+ "@babel/template": "^7.28.6",
196
+ "@babel/types": "^7.29.0"
197
+ },
198
+ "engines": {
199
+ "node": ">=6.9.0"
200
+ }
201
+ },
202
+ "node_modules/@babel/parser": {
203
+ "version": "7.29.2",
204
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.2.tgz",
205
+ "integrity": "sha512-4GgRzy/+fsBa72/RZVJmGKPmZu9Byn8o4MoLpmNe1m8ZfYnz5emHLQz3U4gLud6Zwl0RZIcgiLD7Uq7ySFuDLA==",
206
+ "dev": true,
207
+ "license": "MIT",
208
+ "dependencies": {
209
+ "@babel/types": "^7.29.0"
210
+ },
211
+ "bin": {
212
+ "parser": "bin/babel-parser.js"
213
+ },
214
+ "engines": {
215
+ "node": ">=6.0.0"
216
+ }
217
+ },
218
+ "node_modules/@babel/template": {
219
+ "version": "7.28.6",
220
+ "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.28.6.tgz",
221
+ "integrity": "sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==",
222
+ "dev": true,
223
+ "license": "MIT",
224
+ "dependencies": {
225
+ "@babel/code-frame": "^7.28.6",
226
+ "@babel/parser": "^7.28.6",
227
+ "@babel/types": "^7.28.6"
228
+ },
229
+ "engines": {
230
+ "node": ">=6.9.0"
231
+ }
232
+ },
233
+ "node_modules/@babel/traverse": {
234
+ "version": "7.29.0",
235
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.29.0.tgz",
236
+ "integrity": "sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==",
237
+ "dev": true,
238
+ "license": "MIT",
239
+ "dependencies": {
240
+ "@babel/code-frame": "^7.29.0",
241
+ "@babel/generator": "^7.29.0",
242
+ "@babel/helper-globals": "^7.28.0",
243
+ "@babel/parser": "^7.29.0",
244
+ "@babel/template": "^7.28.6",
245
+ "@babel/types": "^7.29.0",
246
+ "debug": "^4.3.1"
247
+ },
248
+ "engines": {
249
+ "node": ">=6.9.0"
250
+ }
251
+ },
252
+ "node_modules/@babel/types": {
253
+ "version": "7.29.0",
254
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.0.tgz",
255
+ "integrity": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==",
256
+ "dev": true,
257
+ "license": "MIT",
258
+ "dependencies": {
259
+ "@babel/helper-string-parser": "^7.27.1",
260
+ "@babel/helper-validator-identifier": "^7.28.5"
261
+ },
262
+ "engines": {
263
+ "node": ">=6.9.0"
264
+ }
265
+ },
266
+ "node_modules/@emnapi/core": {
267
+ "version": "1.9.1",
268
+ "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.9.1.tgz",
269
+ "integrity": "sha512-mukuNALVsoix/w1BJwFzwXBN/dHeejQtuVzcDsfOEsdpCumXb/E9j8w11h5S54tT1xhifGfbbSm/ICrObRb3KA==",
270
+ "dev": true,
271
+ "license": "MIT",
272
+ "optional": true,
273
+ "peer": true,
274
+ "dependencies": {
275
+ "@emnapi/wasi-threads": "1.2.0",
276
+ "tslib": "^2.4.0"
277
+ }
278
+ },
279
+ "node_modules/@emnapi/runtime": {
280
+ "version": "1.9.1",
281
+ "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.9.1.tgz",
282
+ "integrity": "sha512-VYi5+ZVLhpgK4hQ0TAjiQiZ6ol0oe4mBx7mVv7IflsiEp0OWoVsp/+f9Vc1hOhE0TtkORVrI1GvzyreqpgWtkA==",
283
+ "dev": true,
284
+ "license": "MIT",
285
+ "optional": true,
286
+ "peer": true,
287
+ "dependencies": {
288
+ "tslib": "^2.4.0"
289
+ }
290
+ },
291
+ "node_modules/@emnapi/wasi-threads": {
292
+ "version": "1.2.0",
293
+ "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.0.tgz",
294
+ "integrity": "sha512-N10dEJNSsUx41Z6pZsXU8FjPjpBEplgH24sfkmITrBED1/U2Esum9F3lfLrMjKHHjmi557zQn7kR9R+XWXu5Rg==",
295
+ "dev": true,
296
+ "license": "MIT",
297
+ "optional": true,
298
+ "peer": true,
299
+ "dependencies": {
300
+ "tslib": "^2.4.0"
301
+ }
302
+ },
303
+ "node_modules/@eslint-community/eslint-utils": {
304
+ "version": "4.9.1",
305
+ "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.9.1.tgz",
306
+ "integrity": "sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==",
307
+ "dev": true,
308
+ "license": "MIT",
309
+ "dependencies": {
310
+ "eslint-visitor-keys": "^3.4.3"
311
+ },
312
+ "engines": {
313
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
314
+ },
315
+ "funding": {
316
+ "url": "https://opencollective.com/eslint"
317
+ },
318
+ "peerDependencies": {
319
+ "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
320
+ }
321
+ },
322
+ "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": {
323
+ "version": "3.4.3",
324
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz",
325
+ "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==",
326
+ "dev": true,
327
+ "license": "Apache-2.0",
328
+ "engines": {
329
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
330
+ },
331
+ "funding": {
332
+ "url": "https://opencollective.com/eslint"
333
+ }
334
+ },
335
+ "node_modules/@eslint-community/regexpp": {
336
+ "version": "4.12.2",
337
+ "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.2.tgz",
338
+ "integrity": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==",
339
+ "dev": true,
340
+ "license": "MIT",
341
+ "engines": {
342
+ "node": "^12.0.0 || ^14.0.0 || >=16.0.0"
343
+ }
344
+ },
345
+ "node_modules/@eslint/config-array": {
346
+ "version": "0.21.2",
347
+ "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.21.2.tgz",
348
+ "integrity": "sha512-nJl2KGTlrf9GjLimgIru+V/mzgSK0ABCDQRvxw5BjURL7WfH5uoWmizbH7QB6MmnMBd8cIC9uceWnezL1VZWWw==",
349
+ "dev": true,
350
+ "license": "Apache-2.0",
351
+ "dependencies": {
352
+ "@eslint/object-schema": "^2.1.7",
353
+ "debug": "^4.3.1",
354
+ "minimatch": "^3.1.5"
355
+ },
356
+ "engines": {
357
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
358
+ }
359
+ },
360
+ "node_modules/@eslint/config-helpers": {
361
+ "version": "0.4.2",
362
+ "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.4.2.tgz",
363
+ "integrity": "sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==",
364
+ "dev": true,
365
+ "license": "Apache-2.0",
366
+ "dependencies": {
367
+ "@eslint/core": "^0.17.0"
368
+ },
369
+ "engines": {
370
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
371
+ }
372
+ },
373
+ "node_modules/@eslint/core": {
374
+ "version": "0.17.0",
375
+ "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.17.0.tgz",
376
+ "integrity": "sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==",
377
+ "dev": true,
378
+ "license": "Apache-2.0",
379
+ "dependencies": {
380
+ "@types/json-schema": "^7.0.15"
381
+ },
382
+ "engines": {
383
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
384
+ }
385
+ },
386
+ "node_modules/@eslint/eslintrc": {
387
+ "version": "3.3.5",
388
+ "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.5.tgz",
389
+ "integrity": "sha512-4IlJx0X0qftVsN5E+/vGujTRIFtwuLbNsVUe7TO6zYPDR1O6nFwvwhIKEKSrl6dZchmYBITazxKoUYOjdtjlRg==",
390
+ "dev": true,
391
+ "license": "MIT",
392
+ "dependencies": {
393
+ "ajv": "^6.14.0",
394
+ "debug": "^4.3.2",
395
+ "espree": "^10.0.1",
396
+ "globals": "^14.0.0",
397
+ "ignore": "^5.2.0",
398
+ "import-fresh": "^3.2.1",
399
+ "js-yaml": "^4.1.1",
400
+ "minimatch": "^3.1.5",
401
+ "strip-json-comments": "^3.1.1"
402
+ },
403
+ "engines": {
404
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
405
+ },
406
+ "funding": {
407
+ "url": "https://opencollective.com/eslint"
408
+ }
409
+ },
410
+ "node_modules/@eslint/eslintrc/node_modules/globals": {
411
+ "version": "14.0.0",
412
+ "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz",
413
+ "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==",
414
+ "dev": true,
415
+ "license": "MIT",
416
+ "engines": {
417
+ "node": ">=18"
418
+ },
419
+ "funding": {
420
+ "url": "https://github.com/sponsors/sindresorhus"
421
+ }
422
+ },
423
+ "node_modules/@eslint/js": {
424
+ "version": "9.39.4",
425
+ "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.39.4.tgz",
426
+ "integrity": "sha512-nE7DEIchvtiFTwBw4Lfbu59PG+kCofhjsKaCWzxTpt4lfRjRMqG6uMBzKXuEcyXhOHoUp9riAm7/aWYGhXZ9cw==",
427
+ "dev": true,
428
+ "license": "MIT",
429
+ "engines": {
430
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
431
+ },
432
+ "funding": {
433
+ "url": "https://eslint.org/donate"
434
+ }
435
+ },
436
+ "node_modules/@eslint/object-schema": {
437
+ "version": "2.1.7",
438
+ "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.7.tgz",
439
+ "integrity": "sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==",
440
+ "dev": true,
441
+ "license": "Apache-2.0",
442
+ "engines": {
443
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
444
+ }
445
+ },
446
+ "node_modules/@eslint/plugin-kit": {
447
+ "version": "0.4.1",
448
+ "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.4.1.tgz",
449
+ "integrity": "sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==",
450
+ "dev": true,
451
+ "license": "Apache-2.0",
452
+ "dependencies": {
453
+ "@eslint/core": "^0.17.0",
454
+ "levn": "^0.4.1"
455
+ },
456
+ "engines": {
457
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
458
+ }
459
+ },
460
+ "node_modules/@humanfs/core": {
461
+ "version": "0.19.1",
462
+ "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz",
463
+ "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==",
464
+ "dev": true,
465
+ "license": "Apache-2.0",
466
+ "engines": {
467
+ "node": ">=18.18.0"
468
+ }
469
+ },
470
+ "node_modules/@humanfs/node": {
471
+ "version": "0.16.7",
472
+ "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.7.tgz",
473
+ "integrity": "sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==",
474
+ "dev": true,
475
+ "license": "Apache-2.0",
476
+ "dependencies": {
477
+ "@humanfs/core": "^0.19.1",
478
+ "@humanwhocodes/retry": "^0.4.0"
479
+ },
480
+ "engines": {
481
+ "node": ">=18.18.0"
482
+ }
483
+ },
484
+ "node_modules/@humanwhocodes/module-importer": {
485
+ "version": "1.0.1",
486
+ "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
487
+ "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
488
+ "dev": true,
489
+ "license": "Apache-2.0",
490
+ "engines": {
491
+ "node": ">=12.22"
492
+ },
493
+ "funding": {
494
+ "type": "github",
495
+ "url": "https://github.com/sponsors/nzakas"
496
+ }
497
+ },
498
+ "node_modules/@humanwhocodes/retry": {
499
+ "version": "0.4.3",
500
+ "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.3.tgz",
501
+ "integrity": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==",
502
+ "dev": true,
503
+ "license": "Apache-2.0",
504
+ "engines": {
505
+ "node": ">=18.18"
506
+ },
507
+ "funding": {
508
+ "type": "github",
509
+ "url": "https://github.com/sponsors/nzakas"
510
+ }
511
+ },
512
+ "node_modules/@jridgewell/gen-mapping": {
513
+ "version": "0.3.13",
514
+ "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
515
+ "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
516
+ "dev": true,
517
+ "license": "MIT",
518
+ "dependencies": {
519
+ "@jridgewell/sourcemap-codec": "^1.5.0",
520
+ "@jridgewell/trace-mapping": "^0.3.24"
521
+ }
522
+ },
523
+ "node_modules/@jridgewell/remapping": {
524
+ "version": "2.3.5",
525
+ "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz",
526
+ "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==",
527
+ "dev": true,
528
+ "license": "MIT",
529
+ "dependencies": {
530
+ "@jridgewell/gen-mapping": "^0.3.5",
531
+ "@jridgewell/trace-mapping": "^0.3.24"
532
+ }
533
+ },
534
+ "node_modules/@jridgewell/resolve-uri": {
535
+ "version": "3.1.2",
536
+ "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
537
+ "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
538
+ "dev": true,
539
+ "license": "MIT",
540
+ "engines": {
541
+ "node": ">=6.0.0"
542
+ }
543
+ },
544
+ "node_modules/@jridgewell/sourcemap-codec": {
545
+ "version": "1.5.5",
546
+ "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
547
+ "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
548
+ "dev": true,
549
+ "license": "MIT"
550
+ },
551
+ "node_modules/@jridgewell/trace-mapping": {
552
+ "version": "0.3.31",
553
+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
554
+ "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
555
+ "dev": true,
556
+ "license": "MIT",
557
+ "dependencies": {
558
+ "@jridgewell/resolve-uri": "^3.1.0",
559
+ "@jridgewell/sourcemap-codec": "^1.4.14"
560
+ }
561
+ },
562
+ "node_modules/@napi-rs/wasm-runtime": {
563
+ "version": "1.1.2",
564
+ "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.2.tgz",
565
+ "integrity": "sha512-sNXv5oLJ7ob93xkZ1XnxisYhGYXfaG9f65/ZgYuAu3qt7b3NadcOEhLvx28hv31PgX8SZJRYrAIPQilQmFpLVw==",
566
+ "dev": true,
567
+ "license": "MIT",
568
+ "optional": true,
569
+ "dependencies": {
570
+ "@tybys/wasm-util": "^0.10.1"
571
+ },
572
+ "funding": {
573
+ "type": "github",
574
+ "url": "https://github.com/sponsors/Brooooooklyn"
575
+ },
576
+ "peerDependencies": {
577
+ "@emnapi/core": "^1.7.1",
578
+ "@emnapi/runtime": "^1.7.1"
579
+ }
580
+ },
581
+ "node_modules/@oxc-project/types": {
582
+ "version": "0.122.0",
583
+ "resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.122.0.tgz",
584
+ "integrity": "sha512-oLAl5kBpV4w69UtFZ9xqcmTi+GENWOcPF7FCrczTiBbmC0ibXxCwyvZGbO39rCVEuLGAZM84DH0pUIyyv/YJzA==",
585
+ "dev": true,
586
+ "license": "MIT",
587
+ "funding": {
588
+ "url": "https://github.com/sponsors/Boshen"
589
+ }
590
+ },
591
+ "node_modules/@rolldown/binding-android-arm64": {
592
+ "version": "1.0.0-rc.12",
593
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.0.0-rc.12.tgz",
594
+ "integrity": "sha512-pv1y2Fv0JybcykuiiD3qBOBdz6RteYojRFY1d+b95WVuzx211CRh+ytI/+9iVyWQ6koTh5dawe4S/yRfOFjgaA==",
595
+ "cpu": [
596
+ "arm64"
597
+ ],
598
+ "dev": true,
599
+ "license": "MIT",
600
+ "optional": true,
601
+ "os": [
602
+ "android"
603
+ ],
604
+ "engines": {
605
+ "node": "^20.19.0 || >=22.12.0"
606
+ }
607
+ },
608
+ "node_modules/@rolldown/binding-darwin-arm64": {
609
+ "version": "1.0.0-rc.12",
610
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.0.0-rc.12.tgz",
611
+ "integrity": "sha512-cFYr6zTG/3PXXF3pUO+umXxt1wkRK/0AYT8lDwuqvRC+LuKYWSAQAQZjCWDQpAH172ZV6ieYrNnFzVVcnSflAg==",
612
+ "cpu": [
613
+ "arm64"
614
+ ],
615
+ "dev": true,
616
+ "license": "MIT",
617
+ "optional": true,
618
+ "os": [
619
+ "darwin"
620
+ ],
621
+ "engines": {
622
+ "node": "^20.19.0 || >=22.12.0"
623
+ }
624
+ },
625
+ "node_modules/@rolldown/binding-darwin-x64": {
626
+ "version": "1.0.0-rc.12",
627
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.0.0-rc.12.tgz",
628
+ "integrity": "sha512-ZCsYknnHzeXYps0lGBz8JrF37GpE9bFVefrlmDrAQhOEi4IOIlcoU1+FwHEtyXGx2VkYAvhu7dyBf75EJQffBw==",
629
+ "cpu": [
630
+ "x64"
631
+ ],
632
+ "dev": true,
633
+ "license": "MIT",
634
+ "optional": true,
635
+ "os": [
636
+ "darwin"
637
+ ],
638
+ "engines": {
639
+ "node": "^20.19.0 || >=22.12.0"
640
+ }
641
+ },
642
+ "node_modules/@rolldown/binding-freebsd-x64": {
643
+ "version": "1.0.0-rc.12",
644
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.0.0-rc.12.tgz",
645
+ "integrity": "sha512-dMLeprcVsyJsKolRXyoTH3NL6qtsT0Y2xeuEA8WQJquWFXkEC4bcu1rLZZSnZRMtAqwtrF/Ib9Ddtpa/Gkge9Q==",
646
+ "cpu": [
647
+ "x64"
648
+ ],
649
+ "dev": true,
650
+ "license": "MIT",
651
+ "optional": true,
652
+ "os": [
653
+ "freebsd"
654
+ ],
655
+ "engines": {
656
+ "node": "^20.19.0 || >=22.12.0"
657
+ }
658
+ },
659
+ "node_modules/@rolldown/binding-linux-arm-gnueabihf": {
660
+ "version": "1.0.0-rc.12",
661
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.0.0-rc.12.tgz",
662
+ "integrity": "sha512-YqWjAgGC/9M1lz3GR1r1rP79nMgo3mQiiA+Hfo+pvKFK1fAJ1bCi0ZQVh8noOqNacuY1qIcfyVfP6HoyBRZ85Q==",
663
+ "cpu": [
664
+ "arm"
665
+ ],
666
+ "dev": true,
667
+ "license": "MIT",
668
+ "optional": true,
669
+ "os": [
670
+ "linux"
671
+ ],
672
+ "engines": {
673
+ "node": "^20.19.0 || >=22.12.0"
674
+ }
675
+ },
676
+ "node_modules/@rolldown/binding-linux-arm64-gnu": {
677
+ "version": "1.0.0-rc.12",
678
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.0.0-rc.12.tgz",
679
+ "integrity": "sha512-/I5AS4cIroLpslsmzXfwbe5OmWvSsrFuEw3mwvbQ1kDxJ822hFHIx+vsN/TAzNVyepI/j/GSzrtCIwQPeKCLIg==",
680
+ "cpu": [
681
+ "arm64"
682
+ ],
683
+ "dev": true,
684
+ "license": "MIT",
685
+ "optional": true,
686
+ "os": [
687
+ "linux"
688
+ ],
689
+ "engines": {
690
+ "node": "^20.19.0 || >=22.12.0"
691
+ }
692
+ },
693
+ "node_modules/@rolldown/binding-linux-arm64-musl": {
694
+ "version": "1.0.0-rc.12",
695
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.0.0-rc.12.tgz",
696
+ "integrity": "sha512-V6/wZztnBqlx5hJQqNWwFdxIKN0m38p8Jas+VoSfgH54HSj9tKTt1dZvG6JRHcjh6D7TvrJPWFGaY9UBVOaWPw==",
697
+ "cpu": [
698
+ "arm64"
699
+ ],
700
+ "dev": true,
701
+ "license": "MIT",
702
+ "optional": true,
703
+ "os": [
704
+ "linux"
705
+ ],
706
+ "engines": {
707
+ "node": "^20.19.0 || >=22.12.0"
708
+ }
709
+ },
710
+ "node_modules/@rolldown/binding-linux-ppc64-gnu": {
711
+ "version": "1.0.0-rc.12",
712
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.0.0-rc.12.tgz",
713
+ "integrity": "sha512-AP3E9BpcUYliZCxa3w5Kwj9OtEVDYK6sVoUzy4vTOJsjPOgdaJZKFmN4oOlX0Wp0RPV2ETfmIra9x1xuayFB7g==",
714
+ "cpu": [
715
+ "ppc64"
716
+ ],
717
+ "dev": true,
718
+ "license": "MIT",
719
+ "optional": true,
720
+ "os": [
721
+ "linux"
722
+ ],
723
+ "engines": {
724
+ "node": "^20.19.0 || >=22.12.0"
725
+ }
726
+ },
727
+ "node_modules/@rolldown/binding-linux-s390x-gnu": {
728
+ "version": "1.0.0-rc.12",
729
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.0.0-rc.12.tgz",
730
+ "integrity": "sha512-nWwpvUSPkoFmZo0kQazZYOrT7J5DGOJ/+QHHzjvNlooDZED8oH82Yg67HvehPPLAg5fUff7TfWFHQS8IV1n3og==",
731
+ "cpu": [
732
+ "s390x"
733
+ ],
734
+ "dev": true,
735
+ "license": "MIT",
736
+ "optional": true,
737
+ "os": [
738
+ "linux"
739
+ ],
740
+ "engines": {
741
+ "node": "^20.19.0 || >=22.12.0"
742
+ }
743
+ },
744
+ "node_modules/@rolldown/binding-linux-x64-gnu": {
745
+ "version": "1.0.0-rc.12",
746
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.0.0-rc.12.tgz",
747
+ "integrity": "sha512-RNrafz5bcwRy+O9e6P8Z/OCAJW/A+qtBczIqVYwTs14pf4iV1/+eKEjdOUta93q2TsT/FI0XYDP3TCky38LMAg==",
748
+ "cpu": [
749
+ "x64"
750
+ ],
751
+ "dev": true,
752
+ "license": "MIT",
753
+ "optional": true,
754
+ "os": [
755
+ "linux"
756
+ ],
757
+ "engines": {
758
+ "node": "^20.19.0 || >=22.12.0"
759
+ }
760
+ },
761
+ "node_modules/@rolldown/binding-linux-x64-musl": {
762
+ "version": "1.0.0-rc.12",
763
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.0.0-rc.12.tgz",
764
+ "integrity": "sha512-Jpw/0iwoKWx3LJ2rc1yjFrj+T7iHZn2JDg1Yny1ma0luviFS4mhAIcd1LFNxK3EYu3DHWCps0ydXQ5i/rrJ2ig==",
765
+ "cpu": [
766
+ "x64"
767
+ ],
768
+ "dev": true,
769
+ "license": "MIT",
770
+ "optional": true,
771
+ "os": [
772
+ "linux"
773
+ ],
774
+ "engines": {
775
+ "node": "^20.19.0 || >=22.12.0"
776
+ }
777
+ },
778
+ "node_modules/@rolldown/binding-openharmony-arm64": {
779
+ "version": "1.0.0-rc.12",
780
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.0.0-rc.12.tgz",
781
+ "integrity": "sha512-vRugONE4yMfVn0+7lUKdKvN4D5YusEiPilaoO2sgUWpCvrncvWgPMzK00ZFFJuiPgLwgFNP5eSiUlv2tfc+lpA==",
782
+ "cpu": [
783
+ "arm64"
784
+ ],
785
+ "dev": true,
786
+ "license": "MIT",
787
+ "optional": true,
788
+ "os": [
789
+ "openharmony"
790
+ ],
791
+ "engines": {
792
+ "node": "^20.19.0 || >=22.12.0"
793
+ }
794
+ },
795
+ "node_modules/@rolldown/binding-wasm32-wasi": {
796
+ "version": "1.0.0-rc.12",
797
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.0.0-rc.12.tgz",
798
+ "integrity": "sha512-ykGiLr/6kkiHc0XnBfmFJuCjr5ZYKKofkx+chJWDjitX+KsJuAmrzWhwyOMSHzPhzOHOy7u9HlFoa5MoAOJ/Zg==",
799
+ "cpu": [
800
+ "wasm32"
801
+ ],
802
+ "dev": true,
803
+ "license": "MIT",
804
+ "optional": true,
805
+ "dependencies": {
806
+ "@napi-rs/wasm-runtime": "^1.1.1"
807
+ },
808
+ "engines": {
809
+ "node": ">=14.0.0"
810
+ }
811
+ },
812
+ "node_modules/@rolldown/binding-win32-arm64-msvc": {
813
+ "version": "1.0.0-rc.12",
814
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.0.0-rc.12.tgz",
815
+ "integrity": "sha512-5eOND4duWkwx1AzCxadcOrNeighiLwMInEADT0YM7xeEOOFcovWZCq8dadXgcRHSf3Ulh1kFo/qvzoFiCLOL1Q==",
816
+ "cpu": [
817
+ "arm64"
818
+ ],
819
+ "dev": true,
820
+ "license": "MIT",
821
+ "optional": true,
822
+ "os": [
823
+ "win32"
824
+ ],
825
+ "engines": {
826
+ "node": "^20.19.0 || >=22.12.0"
827
+ }
828
+ },
829
+ "node_modules/@rolldown/binding-win32-x64-msvc": {
830
+ "version": "1.0.0-rc.12",
831
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.0.0-rc.12.tgz",
832
+ "integrity": "sha512-PyqoipaswDLAZtot351MLhrlrh6lcZPo2LSYE+VDxbVk24LVKAGOuE4hb8xZQmrPAuEtTZW8E6D2zc5EUZX4Lw==",
833
+ "cpu": [
834
+ "x64"
835
+ ],
836
+ "dev": true,
837
+ "license": "MIT",
838
+ "optional": true,
839
+ "os": [
840
+ "win32"
841
+ ],
842
+ "engines": {
843
+ "node": "^20.19.0 || >=22.12.0"
844
+ }
845
+ },
846
+ "node_modules/@rolldown/pluginutils": {
847
+ "version": "1.0.0-rc.7",
848
+ "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-rc.7.tgz",
849
+ "integrity": "sha512-qujRfC8sFVInYSPPMLQByRh7zhwkGFS4+tyMQ83srV1qrxL4g8E2tyxVVyxd0+8QeBM1mIk9KbWxkegRr76XzA==",
850
+ "dev": true,
851
+ "license": "MIT"
852
+ },
853
+ "node_modules/@tybys/wasm-util": {
854
+ "version": "0.10.1",
855
+ "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.1.tgz",
856
+ "integrity": "sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==",
857
+ "dev": true,
858
+ "license": "MIT",
859
+ "optional": true,
860
+ "dependencies": {
861
+ "tslib": "^2.4.0"
862
+ }
863
+ },
864
+ "node_modules/@types/estree": {
865
+ "version": "1.0.8",
866
+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
867
+ "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
868
+ "dev": true,
869
+ "license": "MIT"
870
+ },
871
+ "node_modules/@types/json-schema": {
872
+ "version": "7.0.15",
873
+ "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz",
874
+ "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==",
875
+ "dev": true,
876
+ "license": "MIT"
877
+ },
878
+ "node_modules/@types/react": {
879
+ "version": "19.2.14",
880
+ "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.14.tgz",
881
+ "integrity": "sha512-ilcTH/UniCkMdtexkoCN0bI7pMcJDvmQFPvuPvmEaYA/NSfFTAgdUSLAoVjaRJm7+6PvcM+q1zYOwS4wTYMF9w==",
882
+ "dev": true,
883
+ "license": "MIT",
884
+ "dependencies": {
885
+ "csstype": "^3.2.2"
886
+ }
887
+ },
888
+ "node_modules/@types/react-dom": {
889
+ "version": "19.2.3",
890
+ "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.3.tgz",
891
+ "integrity": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==",
892
+ "dev": true,
893
+ "license": "MIT",
894
+ "peerDependencies": {
895
+ "@types/react": "^19.2.0"
896
+ }
897
+ },
898
+ "node_modules/@vitejs/plugin-react": {
899
+ "version": "6.0.1",
900
+ "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-6.0.1.tgz",
901
+ "integrity": "sha512-l9X/E3cDb+xY3SWzlG1MOGt2usfEHGMNIaegaUGFsLkb3RCn/k8/TOXBcab+OndDI4TBtktT8/9BwwW8Vi9KUQ==",
902
+ "dev": true,
903
+ "license": "MIT",
904
+ "dependencies": {
905
+ "@rolldown/pluginutils": "1.0.0-rc.7"
906
+ },
907
+ "engines": {
908
+ "node": "^20.19.0 || >=22.12.0"
909
+ },
910
+ "peerDependencies": {
911
+ "@rolldown/plugin-babel": "^0.1.7 || ^0.2.0",
912
+ "babel-plugin-react-compiler": "^1.0.0",
913
+ "vite": "^8.0.0"
914
+ },
915
+ "peerDependenciesMeta": {
916
+ "@rolldown/plugin-babel": {
917
+ "optional": true
918
+ },
919
+ "babel-plugin-react-compiler": {
920
+ "optional": true
921
+ }
922
+ }
923
+ },
924
+ "node_modules/acorn": {
925
+ "version": "8.16.0",
926
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.16.0.tgz",
927
+ "integrity": "sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==",
928
+ "dev": true,
929
+ "license": "MIT",
930
+ "bin": {
931
+ "acorn": "bin/acorn"
932
+ },
933
+ "engines": {
934
+ "node": ">=0.4.0"
935
+ }
936
+ },
937
+ "node_modules/acorn-jsx": {
938
+ "version": "5.3.2",
939
+ "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
940
+ "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
941
+ "dev": true,
942
+ "license": "MIT",
943
+ "peerDependencies": {
944
+ "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
945
+ }
946
+ },
947
+ "node_modules/ajv": {
948
+ "version": "6.14.0",
949
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.14.0.tgz",
950
+ "integrity": "sha512-IWrosm/yrn43eiKqkfkHis7QioDleaXQHdDVPKg0FSwwd/DuvyX79TZnFOnYpB7dcsFAMmtFztZuXPDvSePkFw==",
951
+ "dev": true,
952
+ "license": "MIT",
953
+ "dependencies": {
954
+ "fast-deep-equal": "^3.1.1",
955
+ "fast-json-stable-stringify": "^2.0.0",
956
+ "json-schema-traverse": "^0.4.1",
957
+ "uri-js": "^4.2.2"
958
+ },
959
+ "funding": {
960
+ "type": "github",
961
+ "url": "https://github.com/sponsors/epoberezkin"
962
+ }
963
+ },
964
+ "node_modules/ansi-styles": {
965
+ "version": "4.3.0",
966
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
967
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
968
+ "dev": true,
969
+ "license": "MIT",
970
+ "dependencies": {
971
+ "color-convert": "^2.0.1"
972
+ },
973
+ "engines": {
974
+ "node": ">=8"
975
+ },
976
+ "funding": {
977
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
978
+ }
979
+ },
980
+ "node_modules/argparse": {
981
+ "version": "2.0.1",
982
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
983
+ "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
984
+ "dev": true,
985
+ "license": "Python-2.0"
986
+ },
987
+ "node_modules/balanced-match": {
988
+ "version": "1.0.2",
989
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
990
+ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
991
+ "dev": true,
992
+ "license": "MIT"
993
+ },
994
+ "node_modules/baseline-browser-mapping": {
995
+ "version": "2.10.12",
996
+ "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.12.tgz",
997
+ "integrity": "sha512-qyq26DxfY4awP2gIRXhhLWfwzwI+N5Nxk6iQi8EFizIaWIjqicQTE4sLnZZVdeKPRcVNoJOkkpfzoIYuvCKaIQ==",
998
+ "dev": true,
999
+ "license": "Apache-2.0",
1000
+ "bin": {
1001
+ "baseline-browser-mapping": "dist/cli.cjs"
1002
+ },
1003
+ "engines": {
1004
+ "node": ">=6.0.0"
1005
+ }
1006
+ },
1007
+ "node_modules/brace-expansion": {
1008
+ "version": "1.1.13",
1009
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.13.tgz",
1010
+ "integrity": "sha512-9ZLprWS6EENmhEOpjCYW2c8VkmOvckIJZfkr7rBW6dObmfgJ/L1GpSYW5Hpo9lDz4D1+n0Ckz8rU7FwHDQiG/w==",
1011
+ "dev": true,
1012
+ "license": "MIT",
1013
+ "dependencies": {
1014
+ "balanced-match": "^1.0.0",
1015
+ "concat-map": "0.0.1"
1016
+ }
1017
+ },
1018
+ "node_modules/browserslist": {
1019
+ "version": "4.28.1",
1020
+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.1.tgz",
1021
+ "integrity": "sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==",
1022
+ "dev": true,
1023
+ "funding": [
1024
+ {
1025
+ "type": "opencollective",
1026
+ "url": "https://opencollective.com/browserslist"
1027
+ },
1028
+ {
1029
+ "type": "tidelift",
1030
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
1031
+ },
1032
+ {
1033
+ "type": "github",
1034
+ "url": "https://github.com/sponsors/ai"
1035
+ }
1036
+ ],
1037
+ "license": "MIT",
1038
+ "dependencies": {
1039
+ "baseline-browser-mapping": "^2.9.0",
1040
+ "caniuse-lite": "^1.0.30001759",
1041
+ "electron-to-chromium": "^1.5.263",
1042
+ "node-releases": "^2.0.27",
1043
+ "update-browserslist-db": "^1.2.0"
1044
+ },
1045
+ "bin": {
1046
+ "browserslist": "cli.js"
1047
+ },
1048
+ "engines": {
1049
+ "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
1050
+ }
1051
+ },
1052
+ "node_modules/callsites": {
1053
+ "version": "3.1.0",
1054
+ "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
1055
+ "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
1056
+ "dev": true,
1057
+ "license": "MIT",
1058
+ "engines": {
1059
+ "node": ">=6"
1060
+ }
1061
+ },
1062
+ "node_modules/caniuse-lite": {
1063
+ "version": "1.0.30001782",
1064
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001782.tgz",
1065
+ "integrity": "sha512-dZcaJLJeDMh4rELYFw1tvSn1bhZWYFOt468FcbHHxx/Z/dFidd1I6ciyFdi3iwfQCyOjqo9upF6lGQYtMiJWxw==",
1066
+ "dev": true,
1067
+ "funding": [
1068
+ {
1069
+ "type": "opencollective",
1070
+ "url": "https://opencollective.com/browserslist"
1071
+ },
1072
+ {
1073
+ "type": "tidelift",
1074
+ "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
1075
+ },
1076
+ {
1077
+ "type": "github",
1078
+ "url": "https://github.com/sponsors/ai"
1079
+ }
1080
+ ],
1081
+ "license": "CC-BY-4.0"
1082
+ },
1083
+ "node_modules/chalk": {
1084
+ "version": "4.1.2",
1085
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
1086
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
1087
+ "dev": true,
1088
+ "license": "MIT",
1089
+ "dependencies": {
1090
+ "ansi-styles": "^4.1.0",
1091
+ "supports-color": "^7.1.0"
1092
+ },
1093
+ "engines": {
1094
+ "node": ">=10"
1095
+ },
1096
+ "funding": {
1097
+ "url": "https://github.com/chalk/chalk?sponsor=1"
1098
+ }
1099
+ },
1100
+ "node_modules/color-convert": {
1101
+ "version": "2.0.1",
1102
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
1103
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
1104
+ "dev": true,
1105
+ "license": "MIT",
1106
+ "dependencies": {
1107
+ "color-name": "~1.1.4"
1108
+ },
1109
+ "engines": {
1110
+ "node": ">=7.0.0"
1111
+ }
1112
+ },
1113
+ "node_modules/color-name": {
1114
+ "version": "1.1.4",
1115
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
1116
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
1117
+ "dev": true,
1118
+ "license": "MIT"
1119
+ },
1120
+ "node_modules/concat-map": {
1121
+ "version": "0.0.1",
1122
+ "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
1123
+ "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
1124
+ "dev": true,
1125
+ "license": "MIT"
1126
+ },
1127
+ "node_modules/convert-source-map": {
1128
+ "version": "2.0.0",
1129
+ "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
1130
+ "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
1131
+ "dev": true,
1132
+ "license": "MIT"
1133
+ },
1134
+ "node_modules/cross-spawn": {
1135
+ "version": "7.0.6",
1136
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
1137
+ "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
1138
+ "dev": true,
1139
+ "license": "MIT",
1140
+ "dependencies": {
1141
+ "path-key": "^3.1.0",
1142
+ "shebang-command": "^2.0.0",
1143
+ "which": "^2.0.1"
1144
+ },
1145
+ "engines": {
1146
+ "node": ">= 8"
1147
+ }
1148
+ },
1149
+ "node_modules/csstype": {
1150
+ "version": "3.2.3",
1151
+ "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz",
1152
+ "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
1153
+ "dev": true,
1154
+ "license": "MIT"
1155
+ },
1156
+ "node_modules/debug": {
1157
+ "version": "4.4.3",
1158
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
1159
+ "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
1160
+ "dev": true,
1161
+ "license": "MIT",
1162
+ "dependencies": {
1163
+ "ms": "^2.1.3"
1164
+ },
1165
+ "engines": {
1166
+ "node": ">=6.0"
1167
+ },
1168
+ "peerDependenciesMeta": {
1169
+ "supports-color": {
1170
+ "optional": true
1171
+ }
1172
+ }
1173
+ },
1174
+ "node_modules/deep-is": {
1175
+ "version": "0.1.4",
1176
+ "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz",
1177
+ "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==",
1178
+ "dev": true,
1179
+ "license": "MIT"
1180
+ },
1181
+ "node_modules/detect-libc": {
1182
+ "version": "2.1.2",
1183
+ "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
1184
+ "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
1185
+ "dev": true,
1186
+ "license": "Apache-2.0",
1187
+ "engines": {
1188
+ "node": ">=8"
1189
+ }
1190
+ },
1191
+ "node_modules/electron-to-chromium": {
1192
+ "version": "1.5.328",
1193
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.328.tgz",
1194
+ "integrity": "sha512-QNQ5l45DzYytThO21403XN3FvK0hOkWDG8viNf6jqS42msJ8I4tGDSpBCgvDRRPnkffafiwAym2X2eHeGD2V0w==",
1195
+ "dev": true,
1196
+ "license": "ISC"
1197
+ },
1198
+ "node_modules/escalade": {
1199
+ "version": "3.2.0",
1200
+ "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
1201
+ "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
1202
+ "dev": true,
1203
+ "license": "MIT",
1204
+ "engines": {
1205
+ "node": ">=6"
1206
+ }
1207
+ },
1208
+ "node_modules/escape-string-regexp": {
1209
+ "version": "4.0.0",
1210
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
1211
+ "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
1212
+ "dev": true,
1213
+ "license": "MIT",
1214
+ "engines": {
1215
+ "node": ">=10"
1216
+ },
1217
+ "funding": {
1218
+ "url": "https://github.com/sponsors/sindresorhus"
1219
+ }
1220
+ },
1221
+ "node_modules/eslint": {
1222
+ "version": "9.39.4",
1223
+ "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.39.4.tgz",
1224
+ "integrity": "sha512-XoMjdBOwe/esVgEvLmNsD3IRHkm7fbKIUGvrleloJXUZgDHig2IPWNniv+GwjyJXzuNqVjlr5+4yVUZjycJwfQ==",
1225
+ "dev": true,
1226
+ "license": "MIT",
1227
+ "dependencies": {
1228
+ "@eslint-community/eslint-utils": "^4.8.0",
1229
+ "@eslint-community/regexpp": "^4.12.1",
1230
+ "@eslint/config-array": "^0.21.2",
1231
+ "@eslint/config-helpers": "^0.4.2",
1232
+ "@eslint/core": "^0.17.0",
1233
+ "@eslint/eslintrc": "^3.3.5",
1234
+ "@eslint/js": "9.39.4",
1235
+ "@eslint/plugin-kit": "^0.4.1",
1236
+ "@humanfs/node": "^0.16.6",
1237
+ "@humanwhocodes/module-importer": "^1.0.1",
1238
+ "@humanwhocodes/retry": "^0.4.2",
1239
+ "@types/estree": "^1.0.6",
1240
+ "ajv": "^6.14.0",
1241
+ "chalk": "^4.0.0",
1242
+ "cross-spawn": "^7.0.6",
1243
+ "debug": "^4.3.2",
1244
+ "escape-string-regexp": "^4.0.0",
1245
+ "eslint-scope": "^8.4.0",
1246
+ "eslint-visitor-keys": "^4.2.1",
1247
+ "espree": "^10.4.0",
1248
+ "esquery": "^1.5.0",
1249
+ "esutils": "^2.0.2",
1250
+ "fast-deep-equal": "^3.1.3",
1251
+ "file-entry-cache": "^8.0.0",
1252
+ "find-up": "^5.0.0",
1253
+ "glob-parent": "^6.0.2",
1254
+ "ignore": "^5.2.0",
1255
+ "imurmurhash": "^0.1.4",
1256
+ "is-glob": "^4.0.0",
1257
+ "json-stable-stringify-without-jsonify": "^1.0.1",
1258
+ "lodash.merge": "^4.6.2",
1259
+ "minimatch": "^3.1.5",
1260
+ "natural-compare": "^1.4.0",
1261
+ "optionator": "^0.9.3"
1262
+ },
1263
+ "bin": {
1264
+ "eslint": "bin/eslint.js"
1265
+ },
1266
+ "engines": {
1267
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1268
+ },
1269
+ "funding": {
1270
+ "url": "https://eslint.org/donate"
1271
+ },
1272
+ "peerDependencies": {
1273
+ "jiti": "*"
1274
+ },
1275
+ "peerDependenciesMeta": {
1276
+ "jiti": {
1277
+ "optional": true
1278
+ }
1279
+ }
1280
+ },
1281
+ "node_modules/eslint-plugin-react-hooks": {
1282
+ "version": "7.0.1",
1283
+ "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-7.0.1.tgz",
1284
+ "integrity": "sha512-O0d0m04evaNzEPoSW+59Mezf8Qt0InfgGIBJnpC0h3NH/WjUAR7BIKUfysC6todmtiZ/A0oUVS8Gce0WhBrHsA==",
1285
+ "dev": true,
1286
+ "license": "MIT",
1287
+ "dependencies": {
1288
+ "@babel/core": "^7.24.4",
1289
+ "@babel/parser": "^7.24.4",
1290
+ "hermes-parser": "^0.25.1",
1291
+ "zod": "^3.25.0 || ^4.0.0",
1292
+ "zod-validation-error": "^3.5.0 || ^4.0.0"
1293
+ },
1294
+ "engines": {
1295
+ "node": ">=18"
1296
+ },
1297
+ "peerDependencies": {
1298
+ "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0"
1299
+ }
1300
+ },
1301
+ "node_modules/eslint-plugin-react-refresh": {
1302
+ "version": "0.5.2",
1303
+ "resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.5.2.tgz",
1304
+ "integrity": "sha512-hmgTH57GfzoTFjVN0yBwTggnsVUF2tcqi7RJZHqi9lIezSs4eFyAMktA68YD4r5kNw1mxyY4dmkyoFDb3FIqrA==",
1305
+ "dev": true,
1306
+ "license": "MIT",
1307
+ "peerDependencies": {
1308
+ "eslint": "^9 || ^10"
1309
+ }
1310
+ },
1311
+ "node_modules/eslint-scope": {
1312
+ "version": "8.4.0",
1313
+ "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.4.0.tgz",
1314
+ "integrity": "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==",
1315
+ "dev": true,
1316
+ "license": "BSD-2-Clause",
1317
+ "dependencies": {
1318
+ "esrecurse": "^4.3.0",
1319
+ "estraverse": "^5.2.0"
1320
+ },
1321
+ "engines": {
1322
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1323
+ },
1324
+ "funding": {
1325
+ "url": "https://opencollective.com/eslint"
1326
+ }
1327
+ },
1328
+ "node_modules/eslint-visitor-keys": {
1329
+ "version": "4.2.1",
1330
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz",
1331
+ "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==",
1332
+ "dev": true,
1333
+ "license": "Apache-2.0",
1334
+ "engines": {
1335
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1336
+ },
1337
+ "funding": {
1338
+ "url": "https://opencollective.com/eslint"
1339
+ }
1340
+ },
1341
+ "node_modules/espree": {
1342
+ "version": "10.4.0",
1343
+ "resolved": "https://registry.npmjs.org/espree/-/espree-10.4.0.tgz",
1344
+ "integrity": "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==",
1345
+ "dev": true,
1346
+ "license": "BSD-2-Clause",
1347
+ "dependencies": {
1348
+ "acorn": "^8.15.0",
1349
+ "acorn-jsx": "^5.3.2",
1350
+ "eslint-visitor-keys": "^4.2.1"
1351
+ },
1352
+ "engines": {
1353
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1354
+ },
1355
+ "funding": {
1356
+ "url": "https://opencollective.com/eslint"
1357
+ }
1358
+ },
1359
+ "node_modules/esquery": {
1360
+ "version": "1.7.0",
1361
+ "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.7.0.tgz",
1362
+ "integrity": "sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==",
1363
+ "dev": true,
1364
+ "license": "BSD-3-Clause",
1365
+ "dependencies": {
1366
+ "estraverse": "^5.1.0"
1367
+ },
1368
+ "engines": {
1369
+ "node": ">=0.10"
1370
+ }
1371
+ },
1372
+ "node_modules/esrecurse": {
1373
+ "version": "4.3.0",
1374
+ "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
1375
+ "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
1376
+ "dev": true,
1377
+ "license": "BSD-2-Clause",
1378
+ "dependencies": {
1379
+ "estraverse": "^5.2.0"
1380
+ },
1381
+ "engines": {
1382
+ "node": ">=4.0"
1383
+ }
1384
+ },
1385
+ "node_modules/estraverse": {
1386
+ "version": "5.3.0",
1387
+ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
1388
+ "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
1389
+ "dev": true,
1390
+ "license": "BSD-2-Clause",
1391
+ "engines": {
1392
+ "node": ">=4.0"
1393
+ }
1394
+ },
1395
+ "node_modules/esutils": {
1396
+ "version": "2.0.3",
1397
+ "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
1398
+ "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
1399
+ "dev": true,
1400
+ "license": "BSD-2-Clause",
1401
+ "engines": {
1402
+ "node": ">=0.10.0"
1403
+ }
1404
+ },
1405
+ "node_modules/fast-deep-equal": {
1406
+ "version": "3.1.3",
1407
+ "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
1408
+ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
1409
+ "dev": true,
1410
+ "license": "MIT"
1411
+ },
1412
+ "node_modules/fast-json-stable-stringify": {
1413
+ "version": "2.1.0",
1414
+ "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
1415
+ "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
1416
+ "dev": true,
1417
+ "license": "MIT"
1418
+ },
1419
+ "node_modules/fast-levenshtein": {
1420
+ "version": "2.0.6",
1421
+ "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
1422
+ "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==",
1423
+ "dev": true,
1424
+ "license": "MIT"
1425
+ },
1426
+ "node_modules/fdir": {
1427
+ "version": "6.5.0",
1428
+ "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
1429
+ "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
1430
+ "dev": true,
1431
+ "license": "MIT",
1432
+ "engines": {
1433
+ "node": ">=12.0.0"
1434
+ },
1435
+ "peerDependencies": {
1436
+ "picomatch": "^3 || ^4"
1437
+ },
1438
+ "peerDependenciesMeta": {
1439
+ "picomatch": {
1440
+ "optional": true
1441
+ }
1442
+ }
1443
+ },
1444
+ "node_modules/file-entry-cache": {
1445
+ "version": "8.0.0",
1446
+ "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz",
1447
+ "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==",
1448
+ "dev": true,
1449
+ "license": "MIT",
1450
+ "dependencies": {
1451
+ "flat-cache": "^4.0.0"
1452
+ },
1453
+ "engines": {
1454
+ "node": ">=16.0.0"
1455
+ }
1456
+ },
1457
+ "node_modules/find-up": {
1458
+ "version": "5.0.0",
1459
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
1460
+ "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
1461
+ "dev": true,
1462
+ "license": "MIT",
1463
+ "dependencies": {
1464
+ "locate-path": "^6.0.0",
1465
+ "path-exists": "^4.0.0"
1466
+ },
1467
+ "engines": {
1468
+ "node": ">=10"
1469
+ },
1470
+ "funding": {
1471
+ "url": "https://github.com/sponsors/sindresorhus"
1472
+ }
1473
+ },
1474
+ "node_modules/flat-cache": {
1475
+ "version": "4.0.1",
1476
+ "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz",
1477
+ "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==",
1478
+ "dev": true,
1479
+ "license": "MIT",
1480
+ "dependencies": {
1481
+ "flatted": "^3.2.9",
1482
+ "keyv": "^4.5.4"
1483
+ },
1484
+ "engines": {
1485
+ "node": ">=16"
1486
+ }
1487
+ },
1488
+ "node_modules/flatted": {
1489
+ "version": "3.4.2",
1490
+ "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.4.2.tgz",
1491
+ "integrity": "sha512-PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA==",
1492
+ "dev": true,
1493
+ "license": "ISC"
1494
+ },
1495
+ "node_modules/fsevents": {
1496
+ "version": "2.3.3",
1497
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
1498
+ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
1499
+ "dev": true,
1500
+ "hasInstallScript": true,
1501
+ "license": "MIT",
1502
+ "optional": true,
1503
+ "os": [
1504
+ "darwin"
1505
+ ],
1506
+ "engines": {
1507
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
1508
+ }
1509
+ },
1510
+ "node_modules/gensync": {
1511
+ "version": "1.0.0-beta.2",
1512
+ "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
1513
+ "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
1514
+ "dev": true,
1515
+ "license": "MIT",
1516
+ "engines": {
1517
+ "node": ">=6.9.0"
1518
+ }
1519
+ },
1520
+ "node_modules/glob-parent": {
1521
+ "version": "6.0.2",
1522
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
1523
+ "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
1524
+ "dev": true,
1525
+ "license": "ISC",
1526
+ "dependencies": {
1527
+ "is-glob": "^4.0.3"
1528
+ },
1529
+ "engines": {
1530
+ "node": ">=10.13.0"
1531
+ }
1532
+ },
1533
+ "node_modules/globals": {
1534
+ "version": "17.4.0",
1535
+ "resolved": "https://registry.npmjs.org/globals/-/globals-17.4.0.tgz",
1536
+ "integrity": "sha512-hjrNztw/VajQwOLsMNT1cbJiH2muO3OROCHnbehc8eY5JyD2gqz4AcMHPqgaOR59DjgUjYAYLeH699g/eWi2jw==",
1537
+ "dev": true,
1538
+ "license": "MIT",
1539
+ "engines": {
1540
+ "node": ">=18"
1541
+ },
1542
+ "funding": {
1543
+ "url": "https://github.com/sponsors/sindresorhus"
1544
+ }
1545
+ },
1546
+ "node_modules/has-flag": {
1547
+ "version": "4.0.0",
1548
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
1549
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
1550
+ "dev": true,
1551
+ "license": "MIT",
1552
+ "engines": {
1553
+ "node": ">=8"
1554
+ }
1555
+ },
1556
+ "node_modules/hermes-estree": {
1557
+ "version": "0.25.1",
1558
+ "resolved": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.25.1.tgz",
1559
+ "integrity": "sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==",
1560
+ "dev": true,
1561
+ "license": "MIT"
1562
+ },
1563
+ "node_modules/hermes-parser": {
1564
+ "version": "0.25.1",
1565
+ "resolved": "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.25.1.tgz",
1566
+ "integrity": "sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==",
1567
+ "dev": true,
1568
+ "license": "MIT",
1569
+ "dependencies": {
1570
+ "hermes-estree": "0.25.1"
1571
+ }
1572
+ },
1573
+ "node_modules/ignore": {
1574
+ "version": "5.3.2",
1575
+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz",
1576
+ "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==",
1577
+ "dev": true,
1578
+ "license": "MIT",
1579
+ "engines": {
1580
+ "node": ">= 4"
1581
+ }
1582
+ },
1583
+ "node_modules/import-fresh": {
1584
+ "version": "3.3.1",
1585
+ "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz",
1586
+ "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==",
1587
+ "dev": true,
1588
+ "license": "MIT",
1589
+ "dependencies": {
1590
+ "parent-module": "^1.0.0",
1591
+ "resolve-from": "^4.0.0"
1592
+ },
1593
+ "engines": {
1594
+ "node": ">=6"
1595
+ },
1596
+ "funding": {
1597
+ "url": "https://github.com/sponsors/sindresorhus"
1598
+ }
1599
+ },
1600
+ "node_modules/imurmurhash": {
1601
+ "version": "0.1.4",
1602
+ "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
1603
+ "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
1604
+ "dev": true,
1605
+ "license": "MIT",
1606
+ "engines": {
1607
+ "node": ">=0.8.19"
1608
+ }
1609
+ },
1610
+ "node_modules/is-extglob": {
1611
+ "version": "2.1.1",
1612
+ "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
1613
+ "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
1614
+ "dev": true,
1615
+ "license": "MIT",
1616
+ "engines": {
1617
+ "node": ">=0.10.0"
1618
+ }
1619
+ },
1620
+ "node_modules/is-glob": {
1621
+ "version": "4.0.3",
1622
+ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
1623
+ "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
1624
+ "dev": true,
1625
+ "license": "MIT",
1626
+ "dependencies": {
1627
+ "is-extglob": "^2.1.1"
1628
+ },
1629
+ "engines": {
1630
+ "node": ">=0.10.0"
1631
+ }
1632
+ },
1633
+ "node_modules/isexe": {
1634
+ "version": "2.0.0",
1635
+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
1636
+ "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
1637
+ "dev": true,
1638
+ "license": "ISC"
1639
+ },
1640
+ "node_modules/js-tokens": {
1641
+ "version": "4.0.0",
1642
+ "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
1643
+ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
1644
+ "dev": true,
1645
+ "license": "MIT"
1646
+ },
1647
+ "node_modules/js-yaml": {
1648
+ "version": "4.1.1",
1649
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz",
1650
+ "integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==",
1651
+ "dev": true,
1652
+ "license": "MIT",
1653
+ "dependencies": {
1654
+ "argparse": "^2.0.1"
1655
+ },
1656
+ "bin": {
1657
+ "js-yaml": "bin/js-yaml.js"
1658
+ }
1659
+ },
1660
+ "node_modules/jsesc": {
1661
+ "version": "3.1.0",
1662
+ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
1663
+ "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
1664
+ "dev": true,
1665
+ "license": "MIT",
1666
+ "bin": {
1667
+ "jsesc": "bin/jsesc"
1668
+ },
1669
+ "engines": {
1670
+ "node": ">=6"
1671
+ }
1672
+ },
1673
+ "node_modules/json-buffer": {
1674
+ "version": "3.0.1",
1675
+ "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz",
1676
+ "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==",
1677
+ "dev": true,
1678
+ "license": "MIT"
1679
+ },
1680
+ "node_modules/json-schema-traverse": {
1681
+ "version": "0.4.1",
1682
+ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
1683
+ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
1684
+ "dev": true,
1685
+ "license": "MIT"
1686
+ },
1687
+ "node_modules/json-stable-stringify-without-jsonify": {
1688
+ "version": "1.0.1",
1689
+ "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
1690
+ "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==",
1691
+ "dev": true,
1692
+ "license": "MIT"
1693
+ },
1694
+ "node_modules/json5": {
1695
+ "version": "2.2.3",
1696
+ "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
1697
+ "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
1698
+ "dev": true,
1699
+ "license": "MIT",
1700
+ "bin": {
1701
+ "json5": "lib/cli.js"
1702
+ },
1703
+ "engines": {
1704
+ "node": ">=6"
1705
+ }
1706
+ },
1707
+ "node_modules/keyv": {
1708
+ "version": "4.5.4",
1709
+ "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz",
1710
+ "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==",
1711
+ "dev": true,
1712
+ "license": "MIT",
1713
+ "dependencies": {
1714
+ "json-buffer": "3.0.1"
1715
+ }
1716
+ },
1717
+ "node_modules/levn": {
1718
+ "version": "0.4.1",
1719
+ "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz",
1720
+ "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
1721
+ "dev": true,
1722
+ "license": "MIT",
1723
+ "dependencies": {
1724
+ "prelude-ls": "^1.2.1",
1725
+ "type-check": "~0.4.0"
1726
+ },
1727
+ "engines": {
1728
+ "node": ">= 0.8.0"
1729
+ }
1730
+ },
1731
+ "node_modules/lightningcss": {
1732
+ "version": "1.32.0",
1733
+ "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.32.0.tgz",
1734
+ "integrity": "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==",
1735
+ "dev": true,
1736
+ "license": "MPL-2.0",
1737
+ "dependencies": {
1738
+ "detect-libc": "^2.0.3"
1739
+ },
1740
+ "engines": {
1741
+ "node": ">= 12.0.0"
1742
+ },
1743
+ "funding": {
1744
+ "type": "opencollective",
1745
+ "url": "https://opencollective.com/parcel"
1746
+ },
1747
+ "optionalDependencies": {
1748
+ "lightningcss-android-arm64": "1.32.0",
1749
+ "lightningcss-darwin-arm64": "1.32.0",
1750
+ "lightningcss-darwin-x64": "1.32.0",
1751
+ "lightningcss-freebsd-x64": "1.32.0",
1752
+ "lightningcss-linux-arm-gnueabihf": "1.32.0",
1753
+ "lightningcss-linux-arm64-gnu": "1.32.0",
1754
+ "lightningcss-linux-arm64-musl": "1.32.0",
1755
+ "lightningcss-linux-x64-gnu": "1.32.0",
1756
+ "lightningcss-linux-x64-musl": "1.32.0",
1757
+ "lightningcss-win32-arm64-msvc": "1.32.0",
1758
+ "lightningcss-win32-x64-msvc": "1.32.0"
1759
+ }
1760
+ },
1761
+ "node_modules/lightningcss-android-arm64": {
1762
+ "version": "1.32.0",
1763
+ "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz",
1764
+ "integrity": "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==",
1765
+ "cpu": [
1766
+ "arm64"
1767
+ ],
1768
+ "dev": true,
1769
+ "license": "MPL-2.0",
1770
+ "optional": true,
1771
+ "os": [
1772
+ "android"
1773
+ ],
1774
+ "engines": {
1775
+ "node": ">= 12.0.0"
1776
+ },
1777
+ "funding": {
1778
+ "type": "opencollective",
1779
+ "url": "https://opencollective.com/parcel"
1780
+ }
1781
+ },
1782
+ "node_modules/lightningcss-darwin-arm64": {
1783
+ "version": "1.32.0",
1784
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz",
1785
+ "integrity": "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==",
1786
+ "cpu": [
1787
+ "arm64"
1788
+ ],
1789
+ "dev": true,
1790
+ "license": "MPL-2.0",
1791
+ "optional": true,
1792
+ "os": [
1793
+ "darwin"
1794
+ ],
1795
+ "engines": {
1796
+ "node": ">= 12.0.0"
1797
+ },
1798
+ "funding": {
1799
+ "type": "opencollective",
1800
+ "url": "https://opencollective.com/parcel"
1801
+ }
1802
+ },
1803
+ "node_modules/lightningcss-darwin-x64": {
1804
+ "version": "1.32.0",
1805
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz",
1806
+ "integrity": "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==",
1807
+ "cpu": [
1808
+ "x64"
1809
+ ],
1810
+ "dev": true,
1811
+ "license": "MPL-2.0",
1812
+ "optional": true,
1813
+ "os": [
1814
+ "darwin"
1815
+ ],
1816
+ "engines": {
1817
+ "node": ">= 12.0.0"
1818
+ },
1819
+ "funding": {
1820
+ "type": "opencollective",
1821
+ "url": "https://opencollective.com/parcel"
1822
+ }
1823
+ },
1824
+ "node_modules/lightningcss-freebsd-x64": {
1825
+ "version": "1.32.0",
1826
+ "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz",
1827
+ "integrity": "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==",
1828
+ "cpu": [
1829
+ "x64"
1830
+ ],
1831
+ "dev": true,
1832
+ "license": "MPL-2.0",
1833
+ "optional": true,
1834
+ "os": [
1835
+ "freebsd"
1836
+ ],
1837
+ "engines": {
1838
+ "node": ">= 12.0.0"
1839
+ },
1840
+ "funding": {
1841
+ "type": "opencollective",
1842
+ "url": "https://opencollective.com/parcel"
1843
+ }
1844
+ },
1845
+ "node_modules/lightningcss-linux-arm-gnueabihf": {
1846
+ "version": "1.32.0",
1847
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz",
1848
+ "integrity": "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==",
1849
+ "cpu": [
1850
+ "arm"
1851
+ ],
1852
+ "dev": true,
1853
+ "license": "MPL-2.0",
1854
+ "optional": true,
1855
+ "os": [
1856
+ "linux"
1857
+ ],
1858
+ "engines": {
1859
+ "node": ">= 12.0.0"
1860
+ },
1861
+ "funding": {
1862
+ "type": "opencollective",
1863
+ "url": "https://opencollective.com/parcel"
1864
+ }
1865
+ },
1866
+ "node_modules/lightningcss-linux-arm64-gnu": {
1867
+ "version": "1.32.0",
1868
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz",
1869
+ "integrity": "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==",
1870
+ "cpu": [
1871
+ "arm64"
1872
+ ],
1873
+ "dev": true,
1874
+ "license": "MPL-2.0",
1875
+ "optional": true,
1876
+ "os": [
1877
+ "linux"
1878
+ ],
1879
+ "engines": {
1880
+ "node": ">= 12.0.0"
1881
+ },
1882
+ "funding": {
1883
+ "type": "opencollective",
1884
+ "url": "https://opencollective.com/parcel"
1885
+ }
1886
+ },
1887
+ "node_modules/lightningcss-linux-arm64-musl": {
1888
+ "version": "1.32.0",
1889
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz",
1890
+ "integrity": "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==",
1891
+ "cpu": [
1892
+ "arm64"
1893
+ ],
1894
+ "dev": true,
1895
+ "license": "MPL-2.0",
1896
+ "optional": true,
1897
+ "os": [
1898
+ "linux"
1899
+ ],
1900
+ "engines": {
1901
+ "node": ">= 12.0.0"
1902
+ },
1903
+ "funding": {
1904
+ "type": "opencollective",
1905
+ "url": "https://opencollective.com/parcel"
1906
+ }
1907
+ },
1908
+ "node_modules/lightningcss-linux-x64-gnu": {
1909
+ "version": "1.32.0",
1910
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz",
1911
+ "integrity": "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==",
1912
+ "cpu": [
1913
+ "x64"
1914
+ ],
1915
+ "dev": true,
1916
+ "license": "MPL-2.0",
1917
+ "optional": true,
1918
+ "os": [
1919
+ "linux"
1920
+ ],
1921
+ "engines": {
1922
+ "node": ">= 12.0.0"
1923
+ },
1924
+ "funding": {
1925
+ "type": "opencollective",
1926
+ "url": "https://opencollective.com/parcel"
1927
+ }
1928
+ },
1929
+ "node_modules/lightningcss-linux-x64-musl": {
1930
+ "version": "1.32.0",
1931
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz",
1932
+ "integrity": "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==",
1933
+ "cpu": [
1934
+ "x64"
1935
+ ],
1936
+ "dev": true,
1937
+ "license": "MPL-2.0",
1938
+ "optional": true,
1939
+ "os": [
1940
+ "linux"
1941
+ ],
1942
+ "engines": {
1943
+ "node": ">= 12.0.0"
1944
+ },
1945
+ "funding": {
1946
+ "type": "opencollective",
1947
+ "url": "https://opencollective.com/parcel"
1948
+ }
1949
+ },
1950
+ "node_modules/lightningcss-win32-arm64-msvc": {
1951
+ "version": "1.32.0",
1952
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz",
1953
+ "integrity": "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==",
1954
+ "cpu": [
1955
+ "arm64"
1956
+ ],
1957
+ "dev": true,
1958
+ "license": "MPL-2.0",
1959
+ "optional": true,
1960
+ "os": [
1961
+ "win32"
1962
+ ],
1963
+ "engines": {
1964
+ "node": ">= 12.0.0"
1965
+ },
1966
+ "funding": {
1967
+ "type": "opencollective",
1968
+ "url": "https://opencollective.com/parcel"
1969
+ }
1970
+ },
1971
+ "node_modules/lightningcss-win32-x64-msvc": {
1972
+ "version": "1.32.0",
1973
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz",
1974
+ "integrity": "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==",
1975
+ "cpu": [
1976
+ "x64"
1977
+ ],
1978
+ "dev": true,
1979
+ "license": "MPL-2.0",
1980
+ "optional": true,
1981
+ "os": [
1982
+ "win32"
1983
+ ],
1984
+ "engines": {
1985
+ "node": ">= 12.0.0"
1986
+ },
1987
+ "funding": {
1988
+ "type": "opencollective",
1989
+ "url": "https://opencollective.com/parcel"
1990
+ }
1991
+ },
1992
+ "node_modules/locate-path": {
1993
+ "version": "6.0.0",
1994
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
1995
+ "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
1996
+ "dev": true,
1997
+ "license": "MIT",
1998
+ "dependencies": {
1999
+ "p-locate": "^5.0.0"
2000
+ },
2001
+ "engines": {
2002
+ "node": ">=10"
2003
+ },
2004
+ "funding": {
2005
+ "url": "https://github.com/sponsors/sindresorhus"
2006
+ }
2007
+ },
2008
+ "node_modules/lodash.merge": {
2009
+ "version": "4.6.2",
2010
+ "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
2011
+ "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==",
2012
+ "dev": true,
2013
+ "license": "MIT"
2014
+ },
2015
+ "node_modules/lru-cache": {
2016
+ "version": "5.1.1",
2017
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
2018
+ "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
2019
+ "dev": true,
2020
+ "license": "ISC",
2021
+ "dependencies": {
2022
+ "yallist": "^3.0.2"
2023
+ }
2024
+ },
2025
+ "node_modules/minimatch": {
2026
+ "version": "3.1.5",
2027
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.5.tgz",
2028
+ "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==",
2029
+ "dev": true,
2030
+ "license": "ISC",
2031
+ "dependencies": {
2032
+ "brace-expansion": "^1.1.7"
2033
+ },
2034
+ "engines": {
2035
+ "node": "*"
2036
+ }
2037
+ },
2038
+ "node_modules/ms": {
2039
+ "version": "2.1.3",
2040
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
2041
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
2042
+ "dev": true,
2043
+ "license": "MIT"
2044
+ },
2045
+ "node_modules/nanoid": {
2046
+ "version": "3.3.11",
2047
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
2048
+ "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
2049
+ "dev": true,
2050
+ "funding": [
2051
+ {
2052
+ "type": "github",
2053
+ "url": "https://github.com/sponsors/ai"
2054
+ }
2055
+ ],
2056
+ "license": "MIT",
2057
+ "bin": {
2058
+ "nanoid": "bin/nanoid.cjs"
2059
+ },
2060
+ "engines": {
2061
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
2062
+ }
2063
+ },
2064
+ "node_modules/natural-compare": {
2065
+ "version": "1.4.0",
2066
+ "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
2067
+ "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==",
2068
+ "dev": true,
2069
+ "license": "MIT"
2070
+ },
2071
+ "node_modules/node-releases": {
2072
+ "version": "2.0.36",
2073
+ "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.36.tgz",
2074
+ "integrity": "sha512-TdC8FSgHz8Mwtw9g5L4gR/Sh9XhSP/0DEkQxfEFXOpiul5IiHgHan2VhYYb6agDSfp4KuvltmGApc8HMgUrIkA==",
2075
+ "dev": true,
2076
+ "license": "MIT"
2077
+ },
2078
+ "node_modules/optionator": {
2079
+ "version": "0.9.4",
2080
+ "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz",
2081
+ "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==",
2082
+ "dev": true,
2083
+ "license": "MIT",
2084
+ "dependencies": {
2085
+ "deep-is": "^0.1.3",
2086
+ "fast-levenshtein": "^2.0.6",
2087
+ "levn": "^0.4.1",
2088
+ "prelude-ls": "^1.2.1",
2089
+ "type-check": "^0.4.0",
2090
+ "word-wrap": "^1.2.5"
2091
+ },
2092
+ "engines": {
2093
+ "node": ">= 0.8.0"
2094
+ }
2095
+ },
2096
+ "node_modules/p-limit": {
2097
+ "version": "3.1.0",
2098
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
2099
+ "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
2100
+ "dev": true,
2101
+ "license": "MIT",
2102
+ "dependencies": {
2103
+ "yocto-queue": "^0.1.0"
2104
+ },
2105
+ "engines": {
2106
+ "node": ">=10"
2107
+ },
2108
+ "funding": {
2109
+ "url": "https://github.com/sponsors/sindresorhus"
2110
+ }
2111
+ },
2112
+ "node_modules/p-locate": {
2113
+ "version": "5.0.0",
2114
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
2115
+ "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
2116
+ "dev": true,
2117
+ "license": "MIT",
2118
+ "dependencies": {
2119
+ "p-limit": "^3.0.2"
2120
+ },
2121
+ "engines": {
2122
+ "node": ">=10"
2123
+ },
2124
+ "funding": {
2125
+ "url": "https://github.com/sponsors/sindresorhus"
2126
+ }
2127
+ },
2128
+ "node_modules/parent-module": {
2129
+ "version": "1.0.1",
2130
+ "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
2131
+ "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
2132
+ "dev": true,
2133
+ "license": "MIT",
2134
+ "dependencies": {
2135
+ "callsites": "^3.0.0"
2136
+ },
2137
+ "engines": {
2138
+ "node": ">=6"
2139
+ }
2140
+ },
2141
+ "node_modules/path-exists": {
2142
+ "version": "4.0.0",
2143
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
2144
+ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
2145
+ "dev": true,
2146
+ "license": "MIT",
2147
+ "engines": {
2148
+ "node": ">=8"
2149
+ }
2150
+ },
2151
+ "node_modules/path-key": {
2152
+ "version": "3.1.1",
2153
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
2154
+ "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
2155
+ "dev": true,
2156
+ "license": "MIT",
2157
+ "engines": {
2158
+ "node": ">=8"
2159
+ }
2160
+ },
2161
+ "node_modules/picocolors": {
2162
+ "version": "1.1.1",
2163
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
2164
+ "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
2165
+ "dev": true,
2166
+ "license": "ISC"
2167
+ },
2168
+ "node_modules/picomatch": {
2169
+ "version": "4.0.4",
2170
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz",
2171
+ "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==",
2172
+ "dev": true,
2173
+ "license": "MIT",
2174
+ "engines": {
2175
+ "node": ">=12"
2176
+ },
2177
+ "funding": {
2178
+ "url": "https://github.com/sponsors/jonschlinkert"
2179
+ }
2180
+ },
2181
+ "node_modules/postcss": {
2182
+ "version": "8.5.8",
2183
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.8.tgz",
2184
+ "integrity": "sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==",
2185
+ "dev": true,
2186
+ "funding": [
2187
+ {
2188
+ "type": "opencollective",
2189
+ "url": "https://opencollective.com/postcss/"
2190
+ },
2191
+ {
2192
+ "type": "tidelift",
2193
+ "url": "https://tidelift.com/funding/github/npm/postcss"
2194
+ },
2195
+ {
2196
+ "type": "github",
2197
+ "url": "https://github.com/sponsors/ai"
2198
+ }
2199
+ ],
2200
+ "license": "MIT",
2201
+ "dependencies": {
2202
+ "nanoid": "^3.3.11",
2203
+ "picocolors": "^1.1.1",
2204
+ "source-map-js": "^1.2.1"
2205
+ },
2206
+ "engines": {
2207
+ "node": "^10 || ^12 || >=14"
2208
+ }
2209
+ },
2210
+ "node_modules/prelude-ls": {
2211
+ "version": "1.2.1",
2212
+ "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
2213
+ "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
2214
+ "dev": true,
2215
+ "license": "MIT",
2216
+ "engines": {
2217
+ "node": ">= 0.8.0"
2218
+ }
2219
+ },
2220
+ "node_modules/punycode": {
2221
+ "version": "2.3.1",
2222
+ "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
2223
+ "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
2224
+ "dev": true,
2225
+ "license": "MIT",
2226
+ "engines": {
2227
+ "node": ">=6"
2228
+ }
2229
+ },
2230
+ "node_modules/react": {
2231
+ "version": "19.2.4",
2232
+ "resolved": "https://registry.npmjs.org/react/-/react-19.2.4.tgz",
2233
+ "integrity": "sha512-9nfp2hYpCwOjAN+8TZFGhtWEwgvWHXqESH8qT89AT/lWklpLON22Lc8pEtnpsZz7VmawabSU0gCjnj8aC0euHQ==",
2234
+ "license": "MIT",
2235
+ "engines": {
2236
+ "node": ">=0.10.0"
2237
+ }
2238
+ },
2239
+ "node_modules/react-dom": {
2240
+ "version": "19.2.4",
2241
+ "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.4.tgz",
2242
+ "integrity": "sha512-AXJdLo8kgMbimY95O2aKQqsz2iWi9jMgKJhRBAxECE4IFxfcazB2LmzloIoibJI3C12IlY20+KFaLv+71bUJeQ==",
2243
+ "license": "MIT",
2244
+ "dependencies": {
2245
+ "scheduler": "^0.27.0"
2246
+ },
2247
+ "peerDependencies": {
2248
+ "react": "^19.2.4"
2249
+ }
2250
+ },
2251
+ "node_modules/resolve-from": {
2252
+ "version": "4.0.0",
2253
+ "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
2254
+ "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
2255
+ "dev": true,
2256
+ "license": "MIT",
2257
+ "engines": {
2258
+ "node": ">=4"
2259
+ }
2260
+ },
2261
+ "node_modules/rolldown": {
2262
+ "version": "1.0.0-rc.12",
2263
+ "resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.0.0-rc.12.tgz",
2264
+ "integrity": "sha512-yP4USLIMYrwpPHEFB5JGH1uxhcslv6/hL0OyvTuY+3qlOSJvZ7ntYnoWpehBxufkgN0cvXxppuTu5hHa/zPh+A==",
2265
+ "dev": true,
2266
+ "license": "MIT",
2267
+ "dependencies": {
2268
+ "@oxc-project/types": "=0.122.0",
2269
+ "@rolldown/pluginutils": "1.0.0-rc.12"
2270
+ },
2271
+ "bin": {
2272
+ "rolldown": "bin/cli.mjs"
2273
+ },
2274
+ "engines": {
2275
+ "node": "^20.19.0 || >=22.12.0"
2276
+ },
2277
+ "optionalDependencies": {
2278
+ "@rolldown/binding-android-arm64": "1.0.0-rc.12",
2279
+ "@rolldown/binding-darwin-arm64": "1.0.0-rc.12",
2280
+ "@rolldown/binding-darwin-x64": "1.0.0-rc.12",
2281
+ "@rolldown/binding-freebsd-x64": "1.0.0-rc.12",
2282
+ "@rolldown/binding-linux-arm-gnueabihf": "1.0.0-rc.12",
2283
+ "@rolldown/binding-linux-arm64-gnu": "1.0.0-rc.12",
2284
+ "@rolldown/binding-linux-arm64-musl": "1.0.0-rc.12",
2285
+ "@rolldown/binding-linux-ppc64-gnu": "1.0.0-rc.12",
2286
+ "@rolldown/binding-linux-s390x-gnu": "1.0.0-rc.12",
2287
+ "@rolldown/binding-linux-x64-gnu": "1.0.0-rc.12",
2288
+ "@rolldown/binding-linux-x64-musl": "1.0.0-rc.12",
2289
+ "@rolldown/binding-openharmony-arm64": "1.0.0-rc.12",
2290
+ "@rolldown/binding-wasm32-wasi": "1.0.0-rc.12",
2291
+ "@rolldown/binding-win32-arm64-msvc": "1.0.0-rc.12",
2292
+ "@rolldown/binding-win32-x64-msvc": "1.0.0-rc.12"
2293
+ }
2294
+ },
2295
+ "node_modules/rolldown/node_modules/@rolldown/pluginutils": {
2296
+ "version": "1.0.0-rc.12",
2297
+ "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-rc.12.tgz",
2298
+ "integrity": "sha512-HHMwmarRKvoFsJorqYlFeFRzXZqCt2ETQlEDOb9aqssrnVBB1/+xgTGtuTrIk5vzLNX1MjMtTf7W9z3tsSbrxw==",
2299
+ "dev": true,
2300
+ "license": "MIT"
2301
+ },
2302
+ "node_modules/scheduler": {
2303
+ "version": "0.27.0",
2304
+ "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz",
2305
+ "integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==",
2306
+ "license": "MIT"
2307
+ },
2308
+ "node_modules/semver": {
2309
+ "version": "6.3.1",
2310
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
2311
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
2312
+ "dev": true,
2313
+ "license": "ISC",
2314
+ "bin": {
2315
+ "semver": "bin/semver.js"
2316
+ }
2317
+ },
2318
+ "node_modules/shebang-command": {
2319
+ "version": "2.0.0",
2320
+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
2321
+ "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
2322
+ "dev": true,
2323
+ "license": "MIT",
2324
+ "dependencies": {
2325
+ "shebang-regex": "^3.0.0"
2326
+ },
2327
+ "engines": {
2328
+ "node": ">=8"
2329
+ }
2330
+ },
2331
+ "node_modules/shebang-regex": {
2332
+ "version": "3.0.0",
2333
+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
2334
+ "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
2335
+ "dev": true,
2336
+ "license": "MIT",
2337
+ "engines": {
2338
+ "node": ">=8"
2339
+ }
2340
+ },
2341
+ "node_modules/source-map-js": {
2342
+ "version": "1.2.1",
2343
+ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
2344
+ "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
2345
+ "dev": true,
2346
+ "license": "BSD-3-Clause",
2347
+ "engines": {
2348
+ "node": ">=0.10.0"
2349
+ }
2350
+ },
2351
+ "node_modules/strip-json-comments": {
2352
+ "version": "3.1.1",
2353
+ "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
2354
+ "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
2355
+ "dev": true,
2356
+ "license": "MIT",
2357
+ "engines": {
2358
+ "node": ">=8"
2359
+ },
2360
+ "funding": {
2361
+ "url": "https://github.com/sponsors/sindresorhus"
2362
+ }
2363
+ },
2364
+ "node_modules/supports-color": {
2365
+ "version": "7.2.0",
2366
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
2367
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
2368
+ "dev": true,
2369
+ "license": "MIT",
2370
+ "dependencies": {
2371
+ "has-flag": "^4.0.0"
2372
+ },
2373
+ "engines": {
2374
+ "node": ">=8"
2375
+ }
2376
+ },
2377
+ "node_modules/tinyglobby": {
2378
+ "version": "0.2.15",
2379
+ "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz",
2380
+ "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==",
2381
+ "dev": true,
2382
+ "license": "MIT",
2383
+ "dependencies": {
2384
+ "fdir": "^6.5.0",
2385
+ "picomatch": "^4.0.3"
2386
+ },
2387
+ "engines": {
2388
+ "node": ">=12.0.0"
2389
+ },
2390
+ "funding": {
2391
+ "url": "https://github.com/sponsors/SuperchupuDev"
2392
+ }
2393
+ },
2394
+ "node_modules/tslib": {
2395
+ "version": "2.8.1",
2396
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
2397
+ "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
2398
+ "dev": true,
2399
+ "license": "0BSD",
2400
+ "optional": true
2401
+ },
2402
+ "node_modules/type-check": {
2403
+ "version": "0.4.0",
2404
+ "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
2405
+ "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
2406
+ "dev": true,
2407
+ "license": "MIT",
2408
+ "dependencies": {
2409
+ "prelude-ls": "^1.2.1"
2410
+ },
2411
+ "engines": {
2412
+ "node": ">= 0.8.0"
2413
+ }
2414
+ },
2415
+ "node_modules/update-browserslist-db": {
2416
+ "version": "1.2.3",
2417
+ "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz",
2418
+ "integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==",
2419
+ "dev": true,
2420
+ "funding": [
2421
+ {
2422
+ "type": "opencollective",
2423
+ "url": "https://opencollective.com/browserslist"
2424
+ },
2425
+ {
2426
+ "type": "tidelift",
2427
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
2428
+ },
2429
+ {
2430
+ "type": "github",
2431
+ "url": "https://github.com/sponsors/ai"
2432
+ }
2433
+ ],
2434
+ "license": "MIT",
2435
+ "dependencies": {
2436
+ "escalade": "^3.2.0",
2437
+ "picocolors": "^1.1.1"
2438
+ },
2439
+ "bin": {
2440
+ "update-browserslist-db": "cli.js"
2441
+ },
2442
+ "peerDependencies": {
2443
+ "browserslist": ">= 4.21.0"
2444
+ }
2445
+ },
2446
+ "node_modules/uri-js": {
2447
+ "version": "4.4.1",
2448
+ "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
2449
+ "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
2450
+ "dev": true,
2451
+ "license": "BSD-2-Clause",
2452
+ "dependencies": {
2453
+ "punycode": "^2.1.0"
2454
+ }
2455
+ },
2456
+ "node_modules/vite": {
2457
+ "version": "8.0.3",
2458
+ "resolved": "https://registry.npmjs.org/vite/-/vite-8.0.3.tgz",
2459
+ "integrity": "sha512-B9ifbFudT1TFhfltfaIPgjo9Z3mDynBTJSUYxTjOQruf/zHH+ezCQKcoqO+h7a9Pw9Nm/OtlXAiGT1axBgwqrQ==",
2460
+ "dev": true,
2461
+ "license": "MIT",
2462
+ "dependencies": {
2463
+ "lightningcss": "^1.32.0",
2464
+ "picomatch": "^4.0.4",
2465
+ "postcss": "^8.5.8",
2466
+ "rolldown": "1.0.0-rc.12",
2467
+ "tinyglobby": "^0.2.15"
2468
+ },
2469
+ "bin": {
2470
+ "vite": "bin/vite.js"
2471
+ },
2472
+ "engines": {
2473
+ "node": "^20.19.0 || >=22.12.0"
2474
+ },
2475
+ "funding": {
2476
+ "url": "https://github.com/vitejs/vite?sponsor=1"
2477
+ },
2478
+ "optionalDependencies": {
2479
+ "fsevents": "~2.3.3"
2480
+ },
2481
+ "peerDependencies": {
2482
+ "@types/node": "^20.19.0 || >=22.12.0",
2483
+ "@vitejs/devtools": "^0.1.0",
2484
+ "esbuild": "^0.27.0",
2485
+ "jiti": ">=1.21.0",
2486
+ "less": "^4.0.0",
2487
+ "sass": "^1.70.0",
2488
+ "sass-embedded": "^1.70.0",
2489
+ "stylus": ">=0.54.8",
2490
+ "sugarss": "^5.0.0",
2491
+ "terser": "^5.16.0",
2492
+ "tsx": "^4.8.1",
2493
+ "yaml": "^2.4.2"
2494
+ },
2495
+ "peerDependenciesMeta": {
2496
+ "@types/node": {
2497
+ "optional": true
2498
+ },
2499
+ "@vitejs/devtools": {
2500
+ "optional": true
2501
+ },
2502
+ "esbuild": {
2503
+ "optional": true
2504
+ },
2505
+ "jiti": {
2506
+ "optional": true
2507
+ },
2508
+ "less": {
2509
+ "optional": true
2510
+ },
2511
+ "sass": {
2512
+ "optional": true
2513
+ },
2514
+ "sass-embedded": {
2515
+ "optional": true
2516
+ },
2517
+ "stylus": {
2518
+ "optional": true
2519
+ },
2520
+ "sugarss": {
2521
+ "optional": true
2522
+ },
2523
+ "terser": {
2524
+ "optional": true
2525
+ },
2526
+ "tsx": {
2527
+ "optional": true
2528
+ },
2529
+ "yaml": {
2530
+ "optional": true
2531
+ }
2532
+ }
2533
+ },
2534
+ "node_modules/which": {
2535
+ "version": "2.0.2",
2536
+ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
2537
+ "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
2538
+ "dev": true,
2539
+ "license": "ISC",
2540
+ "dependencies": {
2541
+ "isexe": "^2.0.0"
2542
+ },
2543
+ "bin": {
2544
+ "node-which": "bin/node-which"
2545
+ },
2546
+ "engines": {
2547
+ "node": ">= 8"
2548
+ }
2549
+ },
2550
+ "node_modules/word-wrap": {
2551
+ "version": "1.2.5",
2552
+ "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz",
2553
+ "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==",
2554
+ "dev": true,
2555
+ "license": "MIT",
2556
+ "engines": {
2557
+ "node": ">=0.10.0"
2558
+ }
2559
+ },
2560
+ "node_modules/yallist": {
2561
+ "version": "3.1.1",
2562
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
2563
+ "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
2564
+ "dev": true,
2565
+ "license": "ISC"
2566
+ },
2567
+ "node_modules/yocto-queue": {
2568
+ "version": "0.1.0",
2569
+ "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
2570
+ "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
2571
+ "dev": true,
2572
+ "license": "MIT",
2573
+ "engines": {
2574
+ "node": ">=10"
2575
+ },
2576
+ "funding": {
2577
+ "url": "https://github.com/sponsors/sindresorhus"
2578
+ }
2579
+ },
2580
+ "node_modules/zod": {
2581
+ "version": "4.3.6",
2582
+ "resolved": "https://registry.npmjs.org/zod/-/zod-4.3.6.tgz",
2583
+ "integrity": "sha512-rftlrkhHZOcjDwkGlnUtZZkvaPHCsDATp4pGpuOOMDaTdDDXF91wuVDJoWoPsKX/3YPQ5fHuF3STjcYyKr+Qhg==",
2584
+ "dev": true,
2585
+ "license": "MIT",
2586
+ "funding": {
2587
+ "url": "https://github.com/sponsors/colinhacks"
2588
+ }
2589
+ },
2590
+ "node_modules/zod-validation-error": {
2591
+ "version": "4.0.2",
2592
+ "resolved": "https://registry.npmjs.org/zod-validation-error/-/zod-validation-error-4.0.2.tgz",
2593
+ "integrity": "sha512-Q6/nZLe6jxuU80qb/4uJ4t5v2VEZ44lzQjPDhYJNztRQ4wyWc6VF3D3Kb/fAuPetZQnhS3hnajCf9CsWesghLQ==",
2594
+ "dev": true,
2595
+ "license": "MIT",
2596
+ "engines": {
2597
+ "node": ">=18.0.0"
2598
+ },
2599
+ "peerDependencies": {
2600
+ "zod": "^3.25.0 || ^4.0.0"
2601
+ }
2602
+ }
2603
+ }
2604
+ }
projects/project1/package.json ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "project1",
3
+ "private": true,
4
+ "version": "0.0.0",
5
+ "type": "module",
6
+ "scripts": {
7
+ "dev": "vite",
8
+ "build": "vite build",
9
+ "lint": "eslint .",
10
+ "preview": "vite preview"
11
+ },
12
+ "dependencies": {
13
+ "react": "^19.2.4",
14
+ "react-dom": "^19.2.4"
15
+ },
16
+ "devDependencies": {
17
+ "@eslint/js": "^9.39.4",
18
+ "@types/react": "^19.2.14",
19
+ "@types/react-dom": "^19.2.3",
20
+ "@vitejs/plugin-react": "^6.0.1",
21
+ "eslint": "^9.39.4",
22
+ "eslint-plugin-react-hooks": "^7.0.1",
23
+ "eslint-plugin-react-refresh": "^0.5.2",
24
+ "globals": "^17.4.0",
25
+ "vite": "^8.0.1"
26
+ }
27
+ }
projects/project1/public/favicon.svg ADDED
projects/project1/public/icons.svg ADDED
projects/project1/src/App.css ADDED
@@ -0,0 +1,184 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .counter {
2
+ font-size: 16px;
3
+ padding: 5px 10px;
4
+ border-radius: 5px;
5
+ color: var(--accent);
6
+ background: var(--accent-bg);
7
+ border: 2px solid transparent;
8
+ transition: border-color 0.3s;
9
+ margin-bottom: 24px;
10
+
11
+ &:hover {
12
+ border-color: var(--accent-border);
13
+ }
14
+ &:focus-visible {
15
+ outline: 2px solid var(--accent);
16
+ outline-offset: 2px;
17
+ }
18
+ }
19
+
20
+ .hero {
21
+ position: relative;
22
+
23
+ .base,
24
+ .framework,
25
+ .vite {
26
+ inset-inline: 0;
27
+ margin: 0 auto;
28
+ }
29
+
30
+ .base {
31
+ width: 170px;
32
+ position: relative;
33
+ z-index: 0;
34
+ }
35
+
36
+ .framework,
37
+ .vite {
38
+ position: absolute;
39
+ }
40
+
41
+ .framework {
42
+ z-index: 1;
43
+ top: 34px;
44
+ height: 28px;
45
+ transform: perspective(2000px) rotateZ(300deg) rotateX(44deg) rotateY(39deg)
46
+ scale(1.4);
47
+ }
48
+
49
+ .vite {
50
+ z-index: 0;
51
+ top: 107px;
52
+ height: 26px;
53
+ width: auto;
54
+ transform: perspective(2000px) rotateZ(300deg) rotateX(40deg) rotateY(39deg)
55
+ scale(0.8);
56
+ }
57
+ }
58
+
59
+ #center {
60
+ display: flex;
61
+ flex-direction: column;
62
+ gap: 25px;
63
+ place-content: center;
64
+ place-items: center;
65
+ flex-grow: 1;
66
+
67
+ @media (max-width: 1024px) {
68
+ padding: 32px 20px 24px;
69
+ gap: 18px;
70
+ }
71
+ }
72
+
73
+ #next-steps {
74
+ display: flex;
75
+ border-top: 1px solid var(--border);
76
+ text-align: left;
77
+
78
+ & > div {
79
+ flex: 1 1 0;
80
+ padding: 32px;
81
+ @media (max-width: 1024px) {
82
+ padding: 24px 20px;
83
+ }
84
+ }
85
+
86
+ .icon {
87
+ margin-bottom: 16px;
88
+ width: 22px;
89
+ height: 22px;
90
+ }
91
+
92
+ @media (max-width: 1024px) {
93
+ flex-direction: column;
94
+ text-align: center;
95
+ }
96
+ }
97
+
98
+ #docs {
99
+ border-right: 1px solid var(--border);
100
+
101
+ @media (max-width: 1024px) {
102
+ border-right: none;
103
+ border-bottom: 1px solid var(--border);
104
+ }
105
+ }
106
+
107
+ #next-steps ul {
108
+ list-style: none;
109
+ padding: 0;
110
+ display: flex;
111
+ gap: 8px;
112
+ margin: 32px 0 0;
113
+
114
+ .logo {
115
+ height: 18px;
116
+ }
117
+
118
+ a {
119
+ color: var(--text-h);
120
+ font-size: 16px;
121
+ border-radius: 6px;
122
+ background: var(--social-bg);
123
+ display: flex;
124
+ padding: 6px 12px;
125
+ align-items: center;
126
+ gap: 8px;
127
+ text-decoration: none;
128
+ transition: box-shadow 0.3s;
129
+
130
+ &:hover {
131
+ box-shadow: var(--shadow);
132
+ }
133
+ .button-icon {
134
+ height: 18px;
135
+ width: 18px;
136
+ }
137
+ }
138
+
139
+ @media (max-width: 1024px) {
140
+ margin-top: 20px;
141
+ flex-wrap: wrap;
142
+ justify-content: center;
143
+
144
+ li {
145
+ flex: 1 1 calc(50% - 8px);
146
+ }
147
+
148
+ a {
149
+ width: 100%;
150
+ justify-content: center;
151
+ box-sizing: border-box;
152
+ }
153
+ }
154
+ }
155
+
156
+ #spacer {
157
+ height: 88px;
158
+ border-top: 1px solid var(--border);
159
+ @media (max-width: 1024px) {
160
+ height: 48px;
161
+ }
162
+ }
163
+
164
+ .ticks {
165
+ position: relative;
166
+ width: 100%;
167
+
168
+ &::before,
169
+ &::after {
170
+ content: '';
171
+ position: absolute;
172
+ top: -4.5px;
173
+ border: 5px solid transparent;
174
+ }
175
+
176
+ &::before {
177
+ left: 0;
178
+ border-left-color: var(--border);
179
+ }
180
+ &::after {
181
+ right: 0;
182
+ border-right-color: var(--border);
183
+ }
184
+ }
projects/project1/src/App.jsx ADDED
@@ -0,0 +1,121 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import { useState } from 'react'
2
+ import reactLogo from './assets/react.svg'
3
+ import viteLogo from './assets/vite.svg'
4
+ import heroImg from './assets/hero.png'
5
+ import './App.css'
6
+
7
+ function App() {
8
+ const [count, setCount] = useState(0)
9
+
10
+ return (
11
+ <>
12
+ <section id="center">
13
+ <div className="hero">
14
+ <img src={heroImg} className="base" width="170" height="179" alt="" />
15
+ <img src={reactLogo} className="framework" alt="React logo" />
16
+ <img src={viteLogo} className="vite" alt="Vite logo" />
17
+ </div>
18
+ <div>
19
+ <h1>Get started</h1>
20
+ <p>
21
+ Edit <code>src/App.jsx</code> and save to test <code>HMR</code>
22
+ </p>
23
+ </div>
24
+ <button
25
+ className="counter"
26
+ onClick={() => setCount((count) => count + 1)}
27
+ >
28
+ Count is {count}
29
+ </button>
30
+ </section>
31
+
32
+ <div className="ticks"></div>
33
+
34
+ <section id="next-steps">
35
+ <div id="docs">
36
+ <svg className="icon" role="presentation" aria-hidden="true">
37
+ <use href="/icons.svg#documentation-icon"></use>
38
+ </svg>
39
+ <h2>Documentation</h2>
40
+ <p>Your questions, answered</p>
41
+ <ul>
42
+ <li>
43
+ <a href="https://vite.dev/" target="_blank">
44
+ <img className="logo" src={viteLogo} alt="" />
45
+ Explore Vite
46
+ </a>
47
+ </li>
48
+ <li>
49
+ <a href="https://react.dev/" target="_blank">
50
+ <img className="button-icon" src={reactLogo} alt="" />
51
+ Learn more
52
+ </a>
53
+ </li>
54
+ </ul>
55
+ </div>
56
+ <div id="social">
57
+ <svg className="icon" role="presentation" aria-hidden="true">
58
+ <use href="/icons.svg#social-icon"></use>
59
+ </svg>
60
+ <h2>Connect with us</h2>
61
+ <p>Join the Vite community</p>
62
+ <ul>
63
+ <li>
64
+ <a href="https://github.com/vitejs/vite" target="_blank">
65
+ <svg
66
+ className="button-icon"
67
+ role="presentation"
68
+ aria-hidden="true"
69
+ >
70
+ <use href="/icons.svg#github-icon"></use>
71
+ </svg>
72
+ GitHub
73
+ </a>
74
+ </li>
75
+ <li>
76
+ <a href="https://chat.vite.dev/" target="_blank">
77
+ <svg
78
+ className="button-icon"
79
+ role="presentation"
80
+ aria-hidden="true"
81
+ >
82
+ <use href="/icons.svg#discord-icon"></use>
83
+ </svg>
84
+ Discord
85
+ </a>
86
+ </li>
87
+ <li>
88
+ <a href="https://x.com/vite_js" target="_blank">
89
+ <svg
90
+ className="button-icon"
91
+ role="presentation"
92
+ aria-hidden="true"
93
+ >
94
+ <use href="/icons.svg#x-icon"></use>
95
+ </svg>
96
+ X.com
97
+ </a>
98
+ </li>
99
+ <li>
100
+ <a href="https://bsky.app/profile/vite.dev" target="_blank">
101
+ <svg
102
+ className="button-icon"
103
+ role="presentation"
104
+ aria-hidden="true"
105
+ >
106
+ <use href="/icons.svg#bluesky-icon"></use>
107
+ </svg>
108
+ Bluesky
109
+ </a>
110
+ </li>
111
+ </ul>
112
+ </div>
113
+ </section>
114
+
115
+ <div className="ticks"></div>
116
+ <section id="spacer"></section>
117
+ </>
118
+ )
119
+ }
120
+
121
+ export default App
projects/project1/src/assets/hero.png ADDED
projects/project1/src/assets/react.svg ADDED
projects/project1/src/assets/vite.svg ADDED
projects/project1/src/index.css ADDED
@@ -0,0 +1,111 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ :root {
2
+ --text: #6b6375;
3
+ --text-h: #08060d;
4
+ --bg: #fff;
5
+ --border: #e5e4e7;
6
+ --code-bg: #f4f3ec;
7
+ --accent: #aa3bff;
8
+ --accent-bg: rgba(170, 59, 255, 0.1);
9
+ --accent-border: rgba(170, 59, 255, 0.5);
10
+ --social-bg: rgba(244, 243, 236, 0.5);
11
+ --shadow:
12
+ rgba(0, 0, 0, 0.1) 0 10px 15px -3px, rgba(0, 0, 0, 0.05) 0 4px 6px -2px;
13
+
14
+ --sans: system-ui, 'Segoe UI', Roboto, sans-serif;
15
+ --heading: system-ui, 'Segoe UI', Roboto, sans-serif;
16
+ --mono: ui-monospace, Consolas, monospace;
17
+
18
+ font: 18px/145% var(--sans);
19
+ letter-spacing: 0.18px;
20
+ color-scheme: light dark;
21
+ color: var(--text);
22
+ background: var(--bg);
23
+ font-synthesis: none;
24
+ text-rendering: optimizeLegibility;
25
+ -webkit-font-smoothing: antialiased;
26
+ -moz-osx-font-smoothing: grayscale;
27
+
28
+ @media (max-width: 1024px) {
29
+ font-size: 16px;
30
+ }
31
+ }
32
+
33
+ @media (prefers-color-scheme: dark) {
34
+ :root {
35
+ --text: #9ca3af;
36
+ --text-h: #f3f4f6;
37
+ --bg: #16171d;
38
+ --border: #2e303a;
39
+ --code-bg: #1f2028;
40
+ --accent: #c084fc;
41
+ --accent-bg: rgba(192, 132, 252, 0.15);
42
+ --accent-border: rgba(192, 132, 252, 0.5);
43
+ --social-bg: rgba(47, 48, 58, 0.5);
44
+ --shadow:
45
+ rgba(0, 0, 0, 0.4) 0 10px 15px -3px, rgba(0, 0, 0, 0.25) 0 4px 6px -2px;
46
+ }
47
+
48
+ #social .button-icon {
49
+ filter: invert(1) brightness(2);
50
+ }
51
+ }
52
+
53
+ body {
54
+ margin: 0;
55
+ }
56
+
57
+ #root {
58
+ width: 1126px;
59
+ max-width: 100%;
60
+ margin: 0 auto;
61
+ text-align: center;
62
+ border-inline: 1px solid var(--border);
63
+ min-height: 100svh;
64
+ display: flex;
65
+ flex-direction: column;
66
+ box-sizing: border-box;
67
+ }
68
+
69
+ h1,
70
+ h2 {
71
+ font-family: var(--heading);
72
+ font-weight: 500;
73
+ color: var(--text-h);
74
+ }
75
+
76
+ h1 {
77
+ font-size: 56px;
78
+ letter-spacing: -1.68px;
79
+ margin: 32px 0;
80
+ @media (max-width: 1024px) {
81
+ font-size: 36px;
82
+ margin: 20px 0;
83
+ }
84
+ }
85
+ h2 {
86
+ font-size: 24px;
87
+ line-height: 118%;
88
+ letter-spacing: -0.24px;
89
+ margin: 0 0 8px;
90
+ @media (max-width: 1024px) {
91
+ font-size: 20px;
92
+ }
93
+ }
94
+ p {
95
+ margin: 0;
96
+ }
97
+
98
+ code,
99
+ .counter {
100
+ font-family: var(--mono);
101
+ display: inline-flex;
102
+ border-radius: 4px;
103
+ color: var(--text-h);
104
+ }
105
+
106
+ code {
107
+ font-size: 15px;
108
+ line-height: 135%;
109
+ padding: 4px 8px;
110
+ background: var(--code-bg);
111
+ }
projects/project1/src/main.jsx ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ import { StrictMode } from 'react'
2
+ import { createRoot } from 'react-dom/client'
3
+ import './index.css'
4
+ import App from './App.jsx'
5
+
6
+ createRoot(document.getElementById('root')).render(
7
+ <StrictMode>
8
+ <App />
9
+ </StrictMode>,
10
+ )
projects/project1/vite.config.js ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ import { defineConfig } from 'vite'
2
+ import react from '@vitejs/plugin-react'
3
+
4
+ // https://vite.dev/config/
5
+ export default defineConfig({
6
+ plugins: [react()],
7
+ server: {
8
+ allowedHosts: true
9
+ }
10
+ })
projects/project2/.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ /venv
projects/project2/.project-lock ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "pip": true
3
+ }
projects/project2/main.py ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ st.title("Todo App")
4
+
5
+ # Initialize session state for todos
6
+ if 'todos' not in st.session_state:
7
+ st.session_state.todos = []
8
+
9
+ # Input for new todo
10
+ new_todo = st.text_input("Add a new todo item")
11
+
12
+ # Button to add todo
13
+ if st.button("Add Todo") and new_todo.strip():
14
+ st.session_state.todos.append(new_todo.strip())
15
+ st.rerun()
16
+
17
+ # Display todos with delete buttons
18
+ st.subheader("Your Todos")
19
+ for i, todo in enumerate(st.session_state.todos):
20
+ col1, col2 = st.columns([4, 1])
21
+ with col1:
22
+ st.write(f"- {todo}")
23
+ with col2:
24
+ if st.button("Delete", key=f"delete_{i}"):
25
+ del st.session_state.todos[i]
26
+ st.rerun()
27
+
28
+ # If no todos
29
+ if not st.session_state.todos:
30
+ st.write("No todos yet. Add one above!")
projects/project2/requirements.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ streamlit
render-setup.sh ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/bin/bash
2
+ set -e
3
+
4
+ echo "==================================="
5
+ echo "Render Deployment Setup"
6
+ echo "==================================="
7
+
8
+ echo "[1/4] Installing Cloudflare Tunnel..."
9
+ curl -fsSL https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-linux-amd64 -o /usr/local/bin/cloudflared
10
+ chmod +x /usr/local/bin/cloudflared
11
+
12
+ echo "[2/4] Installing Node.js dependencies..."
13
+ npm install --production
14
+
15
+ echo "[3/4] Creating projects directory..."
16
+ mkdir -p /opt/render/project/src/projects
17
+
18
+ echo "[4/4] Verifying setup..."
19
+ cloudflared --version
20
+ node --version
21
+ python3 --version
22
+
23
+ echo "==================================="
24
+ echo "Setup complete!"
25
+ echo "==================================="
server.js ADDED
@@ -0,0 +1,473 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import 'dotenv/config';
2
+ import express from 'express';
3
+ import cors from 'cors';
4
+ import { join, dirname } from 'node:path';
5
+ import { fileURLToPath } from 'node:url';
6
+ import { detectLanguage } from './lib/detector.js';
7
+ import { startProject, stopProject, getProjectStatus, listRunningProjects, stopAllProjects } from './lib/projectManager.js';
8
+ import { initStore, createProject, getProject, getAllProjects, updateProject, deleteProject, deleteProjectFiles, generateId } from './lib/projectsStore.js';
9
+ import { writeProjectFiles, detectLanguageFromFiles, scaffoldNodeJS, scaffoldPython } from './lib/projectScaffolder.js';
10
+
11
+ const __filename = fileURLToPath(import.meta.url);
12
+ const __dirname = dirname(__filename);
13
+
14
+ const app = express();
15
+ const projectLogs = new Map();
16
+
17
+ const projectsBasePath = join(__dirname, 'projects');
18
+
19
+ initStore();
20
+
21
+ app.use(cors());
22
+ app.use(express.json());
23
+
24
+ app.get('/', (req, res) => {
25
+ const projects = listRunningProjects();
26
+ res.json({
27
+ message: 'Project Runner Server',
28
+ version: '2.1.0',
29
+ runningProjects: projects,
30
+ endpoints: {
31
+ 'GET /': 'Server info',
32
+ 'GET /health': 'Server health status',
33
+ 'GET /projects': 'List all projects in ./projects folder',
34
+ 'GET /projects/:id': 'Start/access project by ID',
35
+ 'GET /projects/:id/status': 'Get project status',
36
+ 'GET /projects/:id/logs': 'Get project startup logs',
37
+ 'POST /projects/:id/stop': 'Stop a running project',
38
+ 'POST /projects/:id/restart': 'Restart a project',
39
+ 'POST /projects/stop-all': 'Stop all running projects',
40
+ 'POST /api/deploy': 'Deploy a new project (upload files)',
41
+ 'GET /api/deployed': 'List all deployed projects',
42
+ 'GET /api/deployed/:id': 'Get deployed project details',
43
+ 'POST /api/deployed/:id/start': 'Start a deployed project',
44
+ 'PUT /api/deployed/:id': 'Update a deployed project',
45
+ 'DELETE /api/deployed/:id': 'Delete a deployed project'
46
+ }
47
+ });
48
+ });
49
+
50
+ app.get('/health', (req, res) => {
51
+ const projects = listRunningProjects();
52
+ res.json({
53
+ status: 'ok',
54
+ uptime: process.uptime(),
55
+ memory: process.memoryUsage(),
56
+ projects: {
57
+ count: projects.length,
58
+ running: projects
59
+ }
60
+ });
61
+ });
62
+
63
+ app.get('/projects', async (req, res) => {
64
+ try {
65
+ const { readdir } = await import('node:fs/promises');
66
+ const projectsDir = join(__dirname, 'projects');
67
+
68
+ try {
69
+ const entries = await readdir(projectsDir, { withFileTypes: true });
70
+ const projects = [];
71
+
72
+ for (const entry of entries) {
73
+ if (entry.isDirectory()) {
74
+ const status = getProjectStatus(entry.name);
75
+ try {
76
+ const langInfo = await detectLanguage(join(projectsDir, entry.name));
77
+ projects.push({
78
+ id: entry.name,
79
+ isDirectory: true,
80
+ status: status.status,
81
+ language: langInfo ? langInfo.language : 'unknown',
82
+ isStreamlit: langInfo?.isStreamlit || false,
83
+ tunnelUrl: status.tunnelUrl || null,
84
+ localUrl: status.localUrl || null,
85
+ tunnelProvider: status.tunnelProvider || null
86
+ });
87
+ } catch {
88
+ projects.push({
89
+ id: entry.name,
90
+ isDirectory: true,
91
+ status: status.status,
92
+ language: 'unknown',
93
+ isStreamlit: false,
94
+ tunnelUrl: null,
95
+ localUrl: null,
96
+ tunnelProvider: null
97
+ });
98
+ }
99
+ }
100
+ }
101
+
102
+ res.json({ projects });
103
+ } catch {
104
+ res.status(404).json({ error: 'Projects directory not found' });
105
+ }
106
+ } catch (error) {
107
+ res.status(500).json({ error: error.message });
108
+ }
109
+ });
110
+
111
+ app.get('/projects/:id', async (req, res) => {
112
+ const projectId = req.params.id;
113
+ const projectsDir = join(__dirname, 'projects');
114
+ const projectPath = join(projectsDir, projectId);
115
+
116
+ const existingStatus = getProjectStatus(projectId);
117
+ if (existingStatus.running) {
118
+ return res.json({
119
+ success: true,
120
+ projectId,
121
+ status: 'running',
122
+ port: existingStatus.port,
123
+ tunnelUrl: existingStatus.tunnelUrl,
124
+ localUrl: existingStatus.localUrl,
125
+ tunnelProvider: existingStatus.tunnelProvider || null,
126
+ message: 'Project already running',
127
+ iframeUrl: existingStatus.tunnelUrl || existingStatus.localUrl
128
+ });
129
+ }
130
+
131
+ try {
132
+ const langInfo = await detectLanguage(projectPath);
133
+
134
+ if (!langInfo) {
135
+ return res.status(400).json({
136
+ success: false,
137
+ error: 'Could not detect project language',
138
+ message: 'Make sure your project has a valid entry file (package.json, main.py, index.html, etc.)'
139
+ });
140
+ }
141
+
142
+ console.log(`[${projectId}] Detected ${langInfo.language} project (via ${langInfo.detectedFile})`);
143
+
144
+ const result = await startProject(projectId, projectPath, langInfo.config, langInfo.isStreamlit);
145
+
146
+ if (result.success) {
147
+ res.json({
148
+ success: true,
149
+ projectId,
150
+ language: langInfo.language,
151
+ isStreamlit: langInfo.isStreamlit || false,
152
+ status: result.status,
153
+ port: result.port,
154
+ tunnelUrl: result.tunnelUrl,
155
+ localUrl: result.localUrl,
156
+ pid: result.pid,
157
+ message: result.message,
158
+ tunnelProvider: result.tunnelUrl?.includes('trycloudflare') ? 'cloudflare' :
159
+ result.tunnelUrl?.includes('ngrok') ? 'ngrok' : null,
160
+ iframeUrl: result.tunnelUrl || result.localUrl
161
+ });
162
+ } else {
163
+ res.status(500).json({
164
+ success: false,
165
+ projectId,
166
+ error: result.error,
167
+ status: result.status,
168
+ message: result.message
169
+ });
170
+ }
171
+ } catch (error) {
172
+ console.error(`[${projectId}] Error:`, error);
173
+ res.status(500).json({
174
+ success: false,
175
+ projectId,
176
+ error: error.message,
177
+ status: 'error'
178
+ });
179
+ }
180
+ });
181
+
182
+ app.get('/projects/:id/status', (req, res) => {
183
+ const projectId = req.params.id;
184
+ const status = getProjectStatus(projectId);
185
+
186
+ res.json({
187
+ projectId,
188
+ ...status
189
+ });
190
+ });
191
+
192
+ app.get('/projects/:id/logs', (req, res) => {
193
+ const projectId = req.params.id;
194
+ const logs = projectLogs.get(projectId) || [];
195
+
196
+ res.json({
197
+ projectId,
198
+ logs: logs,
199
+ hasLogs: logs.length > 0
200
+ });
201
+ });
202
+
203
+ app.post('/projects/:id/stop', async (req, res) => {
204
+ const projectId = req.params.id;
205
+
206
+ try {
207
+ const result = await stopProject(projectId);
208
+ res.json({
209
+ projectId,
210
+ ...result
211
+ });
212
+ } catch (error) {
213
+ res.status(500).json({
214
+ success: false,
215
+ projectId,
216
+ error: error.message
217
+ });
218
+ }
219
+ });
220
+
221
+ app.post('/projects/:id/restart', async (req, res) => {
222
+ const projectId = req.params.id;
223
+ const projectsDir = join(__dirname, 'projects');
224
+ const projectPath = join(projectsDir, projectId);
225
+
226
+ try {
227
+ await stopProject(projectId);
228
+
229
+ await new Promise(resolve => setTimeout(resolve, 1000));
230
+
231
+ const langInfo = await detectLanguage(projectPath);
232
+
233
+ if (!langInfo) {
234
+ return res.status(400).json({
235
+ success: false,
236
+ error: 'Could not detect project language'
237
+ });
238
+ }
239
+
240
+ const result = await startProject(projectId, projectPath, langInfo.config, langInfo.isStreamlit);
241
+
242
+ res.json({
243
+ ...result,
244
+ projectId,
245
+ message: result.success ? `Project restarted. ${result.message}` : result.message
246
+ });
247
+ } catch (error) {
248
+ res.status(500).json({
249
+ success: false,
250
+ projectId,
251
+ error: error.message
252
+ });
253
+ }
254
+ });
255
+
256
+ app.post('/projects/stop-all', async (req, res) => {
257
+ try {
258
+ await stopAllProjects();
259
+ res.json({
260
+ success: true,
261
+ message: 'All projects stopped'
262
+ });
263
+ } catch (error) {
264
+ res.status(500).json({
265
+ success: false,
266
+ error: error.message
267
+ });
268
+ }
269
+ });
270
+
271
+ app.post('/api/deploy', async (req, res) => {
272
+ try {
273
+ const { name, files, language, config } = req.body;
274
+
275
+ if (!files || typeof files !== 'object') {
276
+ return res.status(400).json({
277
+ success: false,
278
+ error: 'files object is required'
279
+ });
280
+ }
281
+
282
+ const projectId = generateId();
283
+ const detected = detectLanguageFromFiles(files);
284
+ const lang = language || detected.language;
285
+
286
+ let processedFiles = { ...files };
287
+ if (lang === 'nodejs') processedFiles = scaffoldNodeJS(processedFiles);
288
+ if (lang === 'python' || lang === 'streamlit') processedFiles = scaffoldPython(processedFiles);
289
+
290
+ const project = createProject({
291
+ name: name || `project-${projectId}`,
292
+ language: lang,
293
+ files: processedFiles,
294
+ config: config || {},
295
+ metadata: { detectedLanguage: detected.language, isStreamlit: detected.isStreamlit }
296
+ });
297
+
298
+ await writeProjectFiles(projectId, processedFiles, projectsBasePath);
299
+
300
+ res.json({
301
+ success: true,
302
+ projectId: project.id,
303
+ name: project.name,
304
+ language: project.language,
305
+ message: 'Project deployed successfully'
306
+ });
307
+ } catch (error) {
308
+ console.error('Deploy error:', error);
309
+ res.status(500).json({
310
+ success: false,
311
+ error: error.message
312
+ });
313
+ }
314
+ });
315
+
316
+ app.get('/api/deployed', (req, res) => {
317
+ const projects = getAllProjects();
318
+ const result = projects.map(p => ({
319
+ id: p.id,
320
+ name: p.name,
321
+ language: p.language,
322
+ isStreamlit: p.metadata?.isStreamlit || false,
323
+ createdAt: p.createdAt,
324
+ updatedAt: p.updatedAt
325
+ }));
326
+ res.json({ projects: result });
327
+ });
328
+
329
+ app.get('/api/deployed/:id', (req, res) => {
330
+ const project = getProject(req.params.id);
331
+ if (!project) {
332
+ return res.status(404).json({
333
+ success: false,
334
+ error: 'Project not found'
335
+ });
336
+ }
337
+
338
+ const status = getProjectStatus(req.params.id);
339
+
340
+ res.json({
341
+ success: true,
342
+ project: {
343
+ id: project.id,
344
+ name: project.name,
345
+ language: project.language,
346
+ isStreamlit: project.metadata?.isStreamlit || false,
347
+ files: Object.keys(project.files),
348
+ createdAt: project.createdAt,
349
+ updatedAt: project.updatedAt,
350
+ status: status.status,
351
+ tunnelUrl: status.tunnelUrl || null,
352
+ localUrl: status.localUrl || null
353
+ }
354
+ });
355
+ });
356
+
357
+ app.post('/api/deployed/:id/start', async (req, res) => {
358
+ const projectId = req.params.id;
359
+ const project = getProject(projectId);
360
+
361
+ if (!project) {
362
+ return res.status(404).json({
363
+ success: false,
364
+ error: 'Project not found'
365
+ });
366
+ }
367
+
368
+ const projectPath = join(projectsBasePath, projectId);
369
+ const langInfo = await detectLanguage(projectPath);
370
+
371
+ if (!langInfo) {
372
+ return res.status(400).json({
373
+ success: false,
374
+ error: 'Could not detect project language'
375
+ });
376
+ }
377
+
378
+ const result = await startProject(projectId, projectPath, langInfo.config, langInfo.isStreamlit);
379
+
380
+ res.json(result);
381
+ });
382
+
383
+ app.put('/api/deployed/:id', async (req, res) => {
384
+ try {
385
+ const projectId = req.params.id;
386
+ const project = getProject(projectId);
387
+
388
+ if (!project) {
389
+ return res.status(404).json({
390
+ success: false,
391
+ error: 'Project not found'
392
+ });
393
+ }
394
+
395
+ const { files, name, config } = req.body;
396
+
397
+ if (files) {
398
+ let processedFiles = { ...files };
399
+ const lang = req.body.language || project.language;
400
+ if (lang === 'nodejs') processedFiles = scaffoldNodeJS(processedFiles);
401
+ if (lang === 'python' || lang === 'streamlit') processedFiles = scaffoldPython(processedFiles);
402
+
403
+ await writeProjectFiles(projectId, processedFiles, projectsBasePath);
404
+ project.files = processedFiles;
405
+ }
406
+
407
+ if (name) project.name = name;
408
+ if (config) project.config = { ...project.config, ...config };
409
+
410
+ updateProject(projectId, project);
411
+
412
+ res.json({
413
+ success: true,
414
+ projectId,
415
+ message: 'Project updated successfully'
416
+ });
417
+ } catch (error) {
418
+ res.status(500).json({
419
+ success: false,
420
+ error: error.message
421
+ });
422
+ }
423
+ });
424
+
425
+ app.delete('/api/deployed/:id', async (req, res) => {
426
+ const projectId = req.params.id;
427
+ const project = getProject(projectId);
428
+
429
+ if (!project) {
430
+ return res.status(404).json({
431
+ success: false,
432
+ error: 'Project not found'
433
+ });
434
+ }
435
+
436
+ await stopProject(projectId);
437
+ await deleteProjectFiles(projectId);
438
+ deleteProject(projectId);
439
+
440
+ res.json({
441
+ success: true,
442
+ projectId,
443
+ message: 'Project deleted successfully'
444
+ });
445
+ });
446
+
447
+ const PORT = process.env.PORT || 3000;
448
+
449
+ const server = app.listen(PORT, () => {
450
+ console.log(`Project Runner Server running on port ${PORT}`);
451
+ console.log(`Access at: http://localhost:${PORT}`);
452
+ console.log(`Projects directory: ${join(__dirname, 'projects')}`);
453
+ });
454
+
455
+ process.on('SIGTERM', async () => {
456
+ console.log('Shutting down... Stopping all projects...');
457
+ await stopAllProjects();
458
+ server.close(() => {
459
+ console.log('Server closed');
460
+ process.exit(0);
461
+ });
462
+ });
463
+
464
+ process.on('SIGINT', async () => {
465
+ console.log('Shutting down... Stopping all projects...');
466
+ await stopAllProjects();
467
+ server.close(() => {
468
+ console.log('Server closed');
469
+ process.exit(0);
470
+ });
471
+ });
472
+
473
+ export default app;
setup.sh ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/bin/bash
2
+ set -e
3
+
4
+ echo "==================================="
5
+ echo "Project Runner - Environment Setup"
6
+ echo "==================================="
7
+
8
+ echo "[1/5] Installing system dependencies..."
9
+ apt-get update
10
+ apt-get install -y \
11
+ python3 \
12
+ python3-pip \
13
+ python3-venv \
14
+ curl \
15
+ wget \
16
+ git \
17
+ unzip \
18
+ xz-utils \
19
+ golang-go \
20
+ build-essential \
21
+ pkg-config \
22
+ libssl-dev
23
+
24
+ echo "[2/5] Installing Cloudflare Tunnel..."
25
+ curl -fsSL https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-linux-amd64 -o /usr/local/bin/cloudflared
26
+ chmod +x /usr/local/bin/cloudflared
27
+ cloudflared --version
28
+
29
+ echo "[3/5] Installing Node.js dependencies..."
30
+ npm install
31
+
32
+ echo "[4/5] Verifying Python..."
33
+ python3 --version
34
+
35
+ echo "[5/5] Creating projects directory..."
36
+ mkdir -p /opt/render/project/src/projects
37
+
38
+ echo "==================================="
39
+ echo "Setup complete!"
40
+ echo "==================================="
41
+ echo "Run: npm start"