Spaces:
Running
on
T4
Running
on
T4
theo-michel
commited on
Upload 7 files
Browse files- Dockerfile +29 -0
- README.md +10 -1
- TODO.md +2 -0
- index.html +98 -0
- package-lock.json +1688 -0
- package.json +17 -0
- vite.config.js +5 -0
Dockerfile
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Use the official Node.js image as the base image
|
2 |
+
FROM node:18-alpine
|
3 |
+
|
4 |
+
# Set the working directory
|
5 |
+
WORKDIR /app
|
6 |
+
|
7 |
+
# Copy package.json and package-lock.json
|
8 |
+
COPY package*.json ./
|
9 |
+
|
10 |
+
# Install dependencies
|
11 |
+
RUN npm install
|
12 |
+
|
13 |
+
# Copy the rest of the application code
|
14 |
+
COPY . .
|
15 |
+
|
16 |
+
# Ensure the correct ownership and permissions
|
17 |
+
RUN chown -R node:node /app
|
18 |
+
|
19 |
+
# Switch to the non-root 'user' user
|
20 |
+
USER node
|
21 |
+
|
22 |
+
# Expose the port the app runs on
|
23 |
+
EXPOSE 7860
|
24 |
+
|
25 |
+
# Set environment variable to disable opening browser
|
26 |
+
ENV BROWSER=none
|
27 |
+
|
28 |
+
# Start the Vite development server with specific configurations
|
29 |
+
CMD ["npm", "run", "dev", "--", "--host", "--port", "7860", "--strictPort"]
|
README.md
CHANGED
@@ -1 +1,10 @@
|
|
1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
title: Shyguys
|
3 |
+
emoji: 🦀
|
4 |
+
colorFrom: red
|
5 |
+
colorTo: pink
|
6 |
+
sdk: docker
|
7 |
+
pinned: false
|
8 |
+
---
|
9 |
+
|
10 |
+
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
TODO.md
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
- [ ] fix the collision detection at the start of the game (walls)
|
2 |
+
- [ ] Fix reset of the game after new game
|
index.html
ADDED
@@ -0,0 +1,98 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8" />
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
6 |
+
<title>Shyguy's Wingman</title>
|
7 |
+
<link rel="stylesheet" href="/styles/style.css" />
|
8 |
+
<!-- Font Awesome for microphone icon -->
|
9 |
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" />
|
10 |
+
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
11 |
+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
12 |
+
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet" />
|
13 |
+
</head>
|
14 |
+
<body>
|
15 |
+
<div class="intro-view active" id="introView">
|
16 |
+
<div class="intro-content">
|
17 |
+
<img src="/assets/assets/intro-image.jpg" alt="Game Intro" class="intro-image" />
|
18 |
+
<button id="startGameBtn" class="start-game-button">Start Game</button>
|
19 |
+
</div>
|
20 |
+
</div>
|
21 |
+
|
22 |
+
<div class="status-bar">
|
23 |
+
<div class="status-text" id="statusText">
|
24 |
+
You are playing as the Wingman. You need to help your friend get the girl of his dreams. Don't let him leave!
|
25 |
+
</div>
|
26 |
+
</div>
|
27 |
+
|
28 |
+
<div class="game-view active" id="gameView">
|
29 |
+
<div class="container">
|
30 |
+
<div class="game-section">
|
31 |
+
<canvas id="gameCanvas"></canvas>
|
32 |
+
</div>
|
33 |
+
<div class="chat-section">
|
34 |
+
<div class="chat-messages" id="chatMessages">
|
35 |
+
<!-- Messages will be added here -->
|
36 |
+
</div>
|
37 |
+
<div class="input-area">
|
38 |
+
<textarea id="messageInput" placeholder="Type your message here..." rows="3"></textarea>
|
39 |
+
<div class="button-group">
|
40 |
+
<button id="sendButton" class="send-button">Send</button>
|
41 |
+
<button id="micButton" class="mic-button">
|
42 |
+
<i class="fas fa-microphone"></i>
|
43 |
+
</button>
|
44 |
+
</div>
|
45 |
+
</div>
|
46 |
+
</div>
|
47 |
+
</div>
|
48 |
+
</div>
|
49 |
+
|
50 |
+
<div class="dialogue-view" id="dialogueView">
|
51 |
+
<div class="character-section">
|
52 |
+
<div class="character left-character">
|
53 |
+
<img id="leftCharacterImg" class="character-img" />
|
54 |
+
</div>
|
55 |
+
<div class="dialogue-box">
|
56 |
+
<div class="dialogue-messages" id="dialogueMessages">
|
57 |
+
<!-- Dialogue messages will be added here -->
|
58 |
+
</div>
|
59 |
+
<div class="loading-indicator"><span>Loading</span><span class="loading-dots"></span></div>
|
60 |
+
</div>
|
61 |
+
<div class="character right-character">
|
62 |
+
<img id="rightCharacterImg" class="character-img" />
|
63 |
+
</div>
|
64 |
+
</div>
|
65 |
+
<div class="dialogue-controls">
|
66 |
+
<button id="dialogueContinueButton" class="continue-button">Continue</button>
|
67 |
+
<button id="dialogueNextButton" class="next-button">Next</button>
|
68 |
+
</div>
|
69 |
+
</div>
|
70 |
+
|
71 |
+
<div class="game-over-view" id="gameOverView">
|
72 |
+
<div class="game-over-content">
|
73 |
+
<img id="gameOverImage" class="game-over-image" src="" alt="Game Over" />
|
74 |
+
<div class="game-over-text" id="gameOverText">
|
75 |
+
<!-- Text will be set via JS -->
|
76 |
+
</div>
|
77 |
+
<div class="game-over-controls">
|
78 |
+
<button id="playAgainBtn" class="play-again-button">Play Again</button>
|
79 |
+
</div>
|
80 |
+
</div>
|
81 |
+
</div>
|
82 |
+
|
83 |
+
<div class="debug-controls">
|
84 |
+
<div class="game-controls">
|
85 |
+
<button id="targetDoorBtn" class="debug-button">Target Door</button>
|
86 |
+
<button id="targetGirlBtn" class="debug-button">Target Girl</button>
|
87 |
+
<button id="targetBarBtn" class="debug-button">Target Bar</button>
|
88 |
+
<button id="targetDjBtn" class="debug-button">Target Dj</button>
|
89 |
+
<button id="targetSisterBtn" class="debug-button">Target Sister</button>
|
90 |
+
<button id="stopNavBtn" class="debug-button">Stop Navigation</button>
|
91 |
+
<button id="togglePushBtn" class="debug-button">Enable Push</button>
|
92 |
+
<button id="speedBoostBtn" class="debug-button">Speed Boost</button>
|
93 |
+
<button id="toggleVoiceBtn" class="debug-button">Enable Voice</button>
|
94 |
+
</div>
|
95 |
+
</div>
|
96 |
+
<script src="./src/index.js" type="module"></script>
|
97 |
+
</body>
|
98 |
+
</html>
|
package-lock.json
ADDED
@@ -0,0 +1,1688 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"name": "shyguys-wingman-js",
|
3 |
+
"version": "1.0.0",
|
4 |
+
"lockfileVersion": 3,
|
5 |
+
"requires": true,
|
6 |
+
"packages": {
|
7 |
+
"": {
|
8 |
+
"name": "shyguys-wingman-js",
|
9 |
+
"version": "1.0.0",
|
10 |
+
"dependencies": {
|
11 |
+
"elevenlabs": "^1.50.4"
|
12 |
+
},
|
13 |
+
"devDependencies": {
|
14 |
+
"vite": "^6.0.11"
|
15 |
+
}
|
16 |
+
},
|
17 |
+
"node_modules/@esbuild/aix-ppc64": {
|
18 |
+
"version": "0.24.2",
|
19 |
+
"resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.24.2.tgz",
|
20 |
+
"integrity": "sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA==",
|
21 |
+
"cpu": [
|
22 |
+
"ppc64"
|
23 |
+
],
|
24 |
+
"dev": true,
|
25 |
+
"license": "MIT",
|
26 |
+
"optional": true,
|
27 |
+
"os": [
|
28 |
+
"aix"
|
29 |
+
],
|
30 |
+
"engines": {
|
31 |
+
"node": ">=18"
|
32 |
+
}
|
33 |
+
},
|
34 |
+
"node_modules/@esbuild/android-arm": {
|
35 |
+
"version": "0.24.2",
|
36 |
+
"resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.24.2.tgz",
|
37 |
+
"integrity": "sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==",
|
38 |
+
"cpu": [
|
39 |
+
"arm"
|
40 |
+
],
|
41 |
+
"dev": true,
|
42 |
+
"license": "MIT",
|
43 |
+
"optional": true,
|
44 |
+
"os": [
|
45 |
+
"android"
|
46 |
+
],
|
47 |
+
"engines": {
|
48 |
+
"node": ">=18"
|
49 |
+
}
|
50 |
+
},
|
51 |
+
"node_modules/@esbuild/android-arm64": {
|
52 |
+
"version": "0.24.2",
|
53 |
+
"resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.24.2.tgz",
|
54 |
+
"integrity": "sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg==",
|
55 |
+
"cpu": [
|
56 |
+
"arm64"
|
57 |
+
],
|
58 |
+
"dev": true,
|
59 |
+
"license": "MIT",
|
60 |
+
"optional": true,
|
61 |
+
"os": [
|
62 |
+
"android"
|
63 |
+
],
|
64 |
+
"engines": {
|
65 |
+
"node": ">=18"
|
66 |
+
}
|
67 |
+
},
|
68 |
+
"node_modules/@esbuild/android-x64": {
|
69 |
+
"version": "0.24.2",
|
70 |
+
"resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.24.2.tgz",
|
71 |
+
"integrity": "sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw==",
|
72 |
+
"cpu": [
|
73 |
+
"x64"
|
74 |
+
],
|
75 |
+
"dev": true,
|
76 |
+
"license": "MIT",
|
77 |
+
"optional": true,
|
78 |
+
"os": [
|
79 |
+
"android"
|
80 |
+
],
|
81 |
+
"engines": {
|
82 |
+
"node": ">=18"
|
83 |
+
}
|
84 |
+
},
|
85 |
+
"node_modules/@esbuild/darwin-arm64": {
|
86 |
+
"version": "0.24.2",
|
87 |
+
"resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.24.2.tgz",
|
88 |
+
"integrity": "sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA==",
|
89 |
+
"cpu": [
|
90 |
+
"arm64"
|
91 |
+
],
|
92 |
+
"dev": true,
|
93 |
+
"license": "MIT",
|
94 |
+
"optional": true,
|
95 |
+
"os": [
|
96 |
+
"darwin"
|
97 |
+
],
|
98 |
+
"engines": {
|
99 |
+
"node": ">=18"
|
100 |
+
}
|
101 |
+
},
|
102 |
+
"node_modules/@esbuild/darwin-x64": {
|
103 |
+
"version": "0.24.2",
|
104 |
+
"resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.24.2.tgz",
|
105 |
+
"integrity": "sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA==",
|
106 |
+
"cpu": [
|
107 |
+
"x64"
|
108 |
+
],
|
109 |
+
"dev": true,
|
110 |
+
"license": "MIT",
|
111 |
+
"optional": true,
|
112 |
+
"os": [
|
113 |
+
"darwin"
|
114 |
+
],
|
115 |
+
"engines": {
|
116 |
+
"node": ">=18"
|
117 |
+
}
|
118 |
+
},
|
119 |
+
"node_modules/@esbuild/freebsd-arm64": {
|
120 |
+
"version": "0.24.2",
|
121 |
+
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.24.2.tgz",
|
122 |
+
"integrity": "sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg==",
|
123 |
+
"cpu": [
|
124 |
+
"arm64"
|
125 |
+
],
|
126 |
+
"dev": true,
|
127 |
+
"license": "MIT",
|
128 |
+
"optional": true,
|
129 |
+
"os": [
|
130 |
+
"freebsd"
|
131 |
+
],
|
132 |
+
"engines": {
|
133 |
+
"node": ">=18"
|
134 |
+
}
|
135 |
+
},
|
136 |
+
"node_modules/@esbuild/freebsd-x64": {
|
137 |
+
"version": "0.24.2",
|
138 |
+
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.24.2.tgz",
|
139 |
+
"integrity": "sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q==",
|
140 |
+
"cpu": [
|
141 |
+
"x64"
|
142 |
+
],
|
143 |
+
"dev": true,
|
144 |
+
"license": "MIT",
|
145 |
+
"optional": true,
|
146 |
+
"os": [
|
147 |
+
"freebsd"
|
148 |
+
],
|
149 |
+
"engines": {
|
150 |
+
"node": ">=18"
|
151 |
+
}
|
152 |
+
},
|
153 |
+
"node_modules/@esbuild/linux-arm": {
|
154 |
+
"version": "0.24.2",
|
155 |
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.24.2.tgz",
|
156 |
+
"integrity": "sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==",
|
157 |
+
"cpu": [
|
158 |
+
"arm"
|
159 |
+
],
|
160 |
+
"dev": true,
|
161 |
+
"license": "MIT",
|
162 |
+
"optional": true,
|
163 |
+
"os": [
|
164 |
+
"linux"
|
165 |
+
],
|
166 |
+
"engines": {
|
167 |
+
"node": ">=18"
|
168 |
+
}
|
169 |
+
},
|
170 |
+
"node_modules/@esbuild/linux-arm64": {
|
171 |
+
"version": "0.24.2",
|
172 |
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.24.2.tgz",
|
173 |
+
"integrity": "sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg==",
|
174 |
+
"cpu": [
|
175 |
+
"arm64"
|
176 |
+
],
|
177 |
+
"dev": true,
|
178 |
+
"license": "MIT",
|
179 |
+
"optional": true,
|
180 |
+
"os": [
|
181 |
+
"linux"
|
182 |
+
],
|
183 |
+
"engines": {
|
184 |
+
"node": ">=18"
|
185 |
+
}
|
186 |
+
},
|
187 |
+
"node_modules/@esbuild/linux-ia32": {
|
188 |
+
"version": "0.24.2",
|
189 |
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.24.2.tgz",
|
190 |
+
"integrity": "sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw==",
|
191 |
+
"cpu": [
|
192 |
+
"ia32"
|
193 |
+
],
|
194 |
+
"dev": true,
|
195 |
+
"license": "MIT",
|
196 |
+
"optional": true,
|
197 |
+
"os": [
|
198 |
+
"linux"
|
199 |
+
],
|
200 |
+
"engines": {
|
201 |
+
"node": ">=18"
|
202 |
+
}
|
203 |
+
},
|
204 |
+
"node_modules/@esbuild/linux-loong64": {
|
205 |
+
"version": "0.24.2",
|
206 |
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.24.2.tgz",
|
207 |
+
"integrity": "sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ==",
|
208 |
+
"cpu": [
|
209 |
+
"loong64"
|
210 |
+
],
|
211 |
+
"dev": true,
|
212 |
+
"license": "MIT",
|
213 |
+
"optional": true,
|
214 |
+
"os": [
|
215 |
+
"linux"
|
216 |
+
],
|
217 |
+
"engines": {
|
218 |
+
"node": ">=18"
|
219 |
+
}
|
220 |
+
},
|
221 |
+
"node_modules/@esbuild/linux-mips64el": {
|
222 |
+
"version": "0.24.2",
|
223 |
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.24.2.tgz",
|
224 |
+
"integrity": "sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw==",
|
225 |
+
"cpu": [
|
226 |
+
"mips64el"
|
227 |
+
],
|
228 |
+
"dev": true,
|
229 |
+
"license": "MIT",
|
230 |
+
"optional": true,
|
231 |
+
"os": [
|
232 |
+
"linux"
|
233 |
+
],
|
234 |
+
"engines": {
|
235 |
+
"node": ">=18"
|
236 |
+
}
|
237 |
+
},
|
238 |
+
"node_modules/@esbuild/linux-ppc64": {
|
239 |
+
"version": "0.24.2",
|
240 |
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.24.2.tgz",
|
241 |
+
"integrity": "sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw==",
|
242 |
+
"cpu": [
|
243 |
+
"ppc64"
|
244 |
+
],
|
245 |
+
"dev": true,
|
246 |
+
"license": "MIT",
|
247 |
+
"optional": true,
|
248 |
+
"os": [
|
249 |
+
"linux"
|
250 |
+
],
|
251 |
+
"engines": {
|
252 |
+
"node": ">=18"
|
253 |
+
}
|
254 |
+
},
|
255 |
+
"node_modules/@esbuild/linux-riscv64": {
|
256 |
+
"version": "0.24.2",
|
257 |
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.24.2.tgz",
|
258 |
+
"integrity": "sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q==",
|
259 |
+
"cpu": [
|
260 |
+
"riscv64"
|
261 |
+
],
|
262 |
+
"dev": true,
|
263 |
+
"license": "MIT",
|
264 |
+
"optional": true,
|
265 |
+
"os": [
|
266 |
+
"linux"
|
267 |
+
],
|
268 |
+
"engines": {
|
269 |
+
"node": ">=18"
|
270 |
+
}
|
271 |
+
},
|
272 |
+
"node_modules/@esbuild/linux-s390x": {
|
273 |
+
"version": "0.24.2",
|
274 |
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.24.2.tgz",
|
275 |
+
"integrity": "sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw==",
|
276 |
+
"cpu": [
|
277 |
+
"s390x"
|
278 |
+
],
|
279 |
+
"dev": true,
|
280 |
+
"license": "MIT",
|
281 |
+
"optional": true,
|
282 |
+
"os": [
|
283 |
+
"linux"
|
284 |
+
],
|
285 |
+
"engines": {
|
286 |
+
"node": ">=18"
|
287 |
+
}
|
288 |
+
},
|
289 |
+
"node_modules/@esbuild/linux-x64": {
|
290 |
+
"version": "0.24.2",
|
291 |
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.24.2.tgz",
|
292 |
+
"integrity": "sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==",
|
293 |
+
"cpu": [
|
294 |
+
"x64"
|
295 |
+
],
|
296 |
+
"dev": true,
|
297 |
+
"license": "MIT",
|
298 |
+
"optional": true,
|
299 |
+
"os": [
|
300 |
+
"linux"
|
301 |
+
],
|
302 |
+
"engines": {
|
303 |
+
"node": ">=18"
|
304 |
+
}
|
305 |
+
},
|
306 |
+
"node_modules/@esbuild/netbsd-arm64": {
|
307 |
+
"version": "0.24.2",
|
308 |
+
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.24.2.tgz",
|
309 |
+
"integrity": "sha512-wuLK/VztRRpMt9zyHSazyCVdCXlpHkKm34WUyinD2lzK07FAHTq0KQvZZlXikNWkDGoT6x3TD51jKQ7gMVpopw==",
|
310 |
+
"cpu": [
|
311 |
+
"arm64"
|
312 |
+
],
|
313 |
+
"dev": true,
|
314 |
+
"license": "MIT",
|
315 |
+
"optional": true,
|
316 |
+
"os": [
|
317 |
+
"netbsd"
|
318 |
+
],
|
319 |
+
"engines": {
|
320 |
+
"node": ">=18"
|
321 |
+
}
|
322 |
+
},
|
323 |
+
"node_modules/@esbuild/netbsd-x64": {
|
324 |
+
"version": "0.24.2",
|
325 |
+
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.24.2.tgz",
|
326 |
+
"integrity": "sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw==",
|
327 |
+
"cpu": [
|
328 |
+
"x64"
|
329 |
+
],
|
330 |
+
"dev": true,
|
331 |
+
"license": "MIT",
|
332 |
+
"optional": true,
|
333 |
+
"os": [
|
334 |
+
"netbsd"
|
335 |
+
],
|
336 |
+
"engines": {
|
337 |
+
"node": ">=18"
|
338 |
+
}
|
339 |
+
},
|
340 |
+
"node_modules/@esbuild/openbsd-arm64": {
|
341 |
+
"version": "0.24.2",
|
342 |
+
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.24.2.tgz",
|
343 |
+
"integrity": "sha512-YQbi46SBct6iKnszhSvdluqDmxCJA+Pu280Av9WICNwQmMxV7nLRHZfjQzwbPs3jeWnuAhE9Jy0NrnJ12Oz+0A==",
|
344 |
+
"cpu": [
|
345 |
+
"arm64"
|
346 |
+
],
|
347 |
+
"dev": true,
|
348 |
+
"license": "MIT",
|
349 |
+
"optional": true,
|
350 |
+
"os": [
|
351 |
+
"openbsd"
|
352 |
+
],
|
353 |
+
"engines": {
|
354 |
+
"node": ">=18"
|
355 |
+
}
|
356 |
+
},
|
357 |
+
"node_modules/@esbuild/openbsd-x64": {
|
358 |
+
"version": "0.24.2",
|
359 |
+
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.24.2.tgz",
|
360 |
+
"integrity": "sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA==",
|
361 |
+
"cpu": [
|
362 |
+
"x64"
|
363 |
+
],
|
364 |
+
"dev": true,
|
365 |
+
"license": "MIT",
|
366 |
+
"optional": true,
|
367 |
+
"os": [
|
368 |
+
"openbsd"
|
369 |
+
],
|
370 |
+
"engines": {
|
371 |
+
"node": ">=18"
|
372 |
+
}
|
373 |
+
},
|
374 |
+
"node_modules/@esbuild/sunos-x64": {
|
375 |
+
"version": "0.24.2",
|
376 |
+
"resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.24.2.tgz",
|
377 |
+
"integrity": "sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig==",
|
378 |
+
"cpu": [
|
379 |
+
"x64"
|
380 |
+
],
|
381 |
+
"dev": true,
|
382 |
+
"license": "MIT",
|
383 |
+
"optional": true,
|
384 |
+
"os": [
|
385 |
+
"sunos"
|
386 |
+
],
|
387 |
+
"engines": {
|
388 |
+
"node": ">=18"
|
389 |
+
}
|
390 |
+
},
|
391 |
+
"node_modules/@esbuild/win32-arm64": {
|
392 |
+
"version": "0.24.2",
|
393 |
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.24.2.tgz",
|
394 |
+
"integrity": "sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ==",
|
395 |
+
"cpu": [
|
396 |
+
"arm64"
|
397 |
+
],
|
398 |
+
"dev": true,
|
399 |
+
"license": "MIT",
|
400 |
+
"optional": true,
|
401 |
+
"os": [
|
402 |
+
"win32"
|
403 |
+
],
|
404 |
+
"engines": {
|
405 |
+
"node": ">=18"
|
406 |
+
}
|
407 |
+
},
|
408 |
+
"node_modules/@esbuild/win32-ia32": {
|
409 |
+
"version": "0.24.2",
|
410 |
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.24.2.tgz",
|
411 |
+
"integrity": "sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA==",
|
412 |
+
"cpu": [
|
413 |
+
"ia32"
|
414 |
+
],
|
415 |
+
"dev": true,
|
416 |
+
"license": "MIT",
|
417 |
+
"optional": true,
|
418 |
+
"os": [
|
419 |
+
"win32"
|
420 |
+
],
|
421 |
+
"engines": {
|
422 |
+
"node": ">=18"
|
423 |
+
}
|
424 |
+
},
|
425 |
+
"node_modules/@esbuild/win32-x64": {
|
426 |
+
"version": "0.24.2",
|
427 |
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.24.2.tgz",
|
428 |
+
"integrity": "sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg==",
|
429 |
+
"cpu": [
|
430 |
+
"x64"
|
431 |
+
],
|
432 |
+
"dev": true,
|
433 |
+
"license": "MIT",
|
434 |
+
"optional": true,
|
435 |
+
"os": [
|
436 |
+
"win32"
|
437 |
+
],
|
438 |
+
"engines": {
|
439 |
+
"node": ">=18"
|
440 |
+
}
|
441 |
+
},
|
442 |
+
"node_modules/@rollup/rollup-android-arm-eabi": {
|
443 |
+
"version": "4.32.0",
|
444 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.32.0.tgz",
|
445 |
+
"integrity": "sha512-G2fUQQANtBPsNwiVFg4zKiPQyjVKZCUdQUol53R8E71J7AsheRMV/Yv/nB8giOcOVqP7//eB5xPqieBYZe9bGg==",
|
446 |
+
"cpu": [
|
447 |
+
"arm"
|
448 |
+
],
|
449 |
+
"dev": true,
|
450 |
+
"license": "MIT",
|
451 |
+
"optional": true,
|
452 |
+
"os": [
|
453 |
+
"android"
|
454 |
+
]
|
455 |
+
},
|
456 |
+
"node_modules/@rollup/rollup-android-arm64": {
|
457 |
+
"version": "4.32.0",
|
458 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.32.0.tgz",
|
459 |
+
"integrity": "sha512-qhFwQ+ljoymC+j5lXRv8DlaJYY/+8vyvYmVx074zrLsu5ZGWYsJNLjPPVJJjhZQpyAKUGPydOq9hRLLNvh1s3A==",
|
460 |
+
"cpu": [
|
461 |
+
"arm64"
|
462 |
+
],
|
463 |
+
"dev": true,
|
464 |
+
"license": "MIT",
|
465 |
+
"optional": true,
|
466 |
+
"os": [
|
467 |
+
"android"
|
468 |
+
]
|
469 |
+
},
|
470 |
+
"node_modules/@rollup/rollup-darwin-arm64": {
|
471 |
+
"version": "4.32.0",
|
472 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.32.0.tgz",
|
473 |
+
"integrity": "sha512-44n/X3lAlWsEY6vF8CzgCx+LQaoqWGN7TzUfbJDiTIOjJm4+L2Yq+r5a8ytQRGyPqgJDs3Rgyo8eVL7n9iW6AQ==",
|
474 |
+
"cpu": [
|
475 |
+
"arm64"
|
476 |
+
],
|
477 |
+
"dev": true,
|
478 |
+
"license": "MIT",
|
479 |
+
"optional": true,
|
480 |
+
"os": [
|
481 |
+
"darwin"
|
482 |
+
]
|
483 |
+
},
|
484 |
+
"node_modules/@rollup/rollup-darwin-x64": {
|
485 |
+
"version": "4.32.0",
|
486 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.32.0.tgz",
|
487 |
+
"integrity": "sha512-F9ct0+ZX5Np6+ZDztxiGCIvlCaW87HBdHcozUfsHnj1WCUTBUubAoanhHUfnUHZABlElyRikI0mgcw/qdEm2VQ==",
|
488 |
+
"cpu": [
|
489 |
+
"x64"
|
490 |
+
],
|
491 |
+
"dev": true,
|
492 |
+
"license": "MIT",
|
493 |
+
"optional": true,
|
494 |
+
"os": [
|
495 |
+
"darwin"
|
496 |
+
]
|
497 |
+
},
|
498 |
+
"node_modules/@rollup/rollup-freebsd-arm64": {
|
499 |
+
"version": "4.32.0",
|
500 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.32.0.tgz",
|
501 |
+
"integrity": "sha512-JpsGxLBB2EFXBsTLHfkZDsXSpSmKD3VxXCgBQtlPcuAqB8TlqtLcbeMhxXQkCDv1avgwNjF8uEIbq5p+Cee0PA==",
|
502 |
+
"cpu": [
|
503 |
+
"arm64"
|
504 |
+
],
|
505 |
+
"dev": true,
|
506 |
+
"license": "MIT",
|
507 |
+
"optional": true,
|
508 |
+
"os": [
|
509 |
+
"freebsd"
|
510 |
+
]
|
511 |
+
},
|
512 |
+
"node_modules/@rollup/rollup-freebsd-x64": {
|
513 |
+
"version": "4.32.0",
|
514 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.32.0.tgz",
|
515 |
+
"integrity": "sha512-wegiyBT6rawdpvnD9lmbOpx5Sph+yVZKHbhnSP9MqUEDX08G4UzMU+D87jrazGE7lRSyTRs6NEYHtzfkJ3FjjQ==",
|
516 |
+
"cpu": [
|
517 |
+
"x64"
|
518 |
+
],
|
519 |
+
"dev": true,
|
520 |
+
"license": "MIT",
|
521 |
+
"optional": true,
|
522 |
+
"os": [
|
523 |
+
"freebsd"
|
524 |
+
]
|
525 |
+
},
|
526 |
+
"node_modules/@rollup/rollup-linux-arm-gnueabihf": {
|
527 |
+
"version": "4.32.0",
|
528 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.32.0.tgz",
|
529 |
+
"integrity": "sha512-3pA7xecItbgOs1A5H58dDvOUEboG5UfpTq3WzAdF54acBbUM+olDJAPkgj1GRJ4ZqE12DZ9/hNS2QZk166v92A==",
|
530 |
+
"cpu": [
|
531 |
+
"arm"
|
532 |
+
],
|
533 |
+
"dev": true,
|
534 |
+
"license": "MIT",
|
535 |
+
"optional": true,
|
536 |
+
"os": [
|
537 |
+
"linux"
|
538 |
+
]
|
539 |
+
},
|
540 |
+
"node_modules/@rollup/rollup-linux-arm-musleabihf": {
|
541 |
+
"version": "4.32.0",
|
542 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.32.0.tgz",
|
543 |
+
"integrity": "sha512-Y7XUZEVISGyge51QbYyYAEHwpGgmRrAxQXO3siyYo2kmaj72USSG8LtlQQgAtlGfxYiOwu+2BdbPjzEpcOpRmQ==",
|
544 |
+
"cpu": [
|
545 |
+
"arm"
|
546 |
+
],
|
547 |
+
"dev": true,
|
548 |
+
"license": "MIT",
|
549 |
+
"optional": true,
|
550 |
+
"os": [
|
551 |
+
"linux"
|
552 |
+
]
|
553 |
+
},
|
554 |
+
"node_modules/@rollup/rollup-linux-arm64-gnu": {
|
555 |
+
"version": "4.32.0",
|
556 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.32.0.tgz",
|
557 |
+
"integrity": "sha512-r7/OTF5MqeBrZo5omPXcTnjvv1GsrdH8a8RerARvDFiDwFpDVDnJyByYM/nX+mvks8XXsgPUxkwe/ltaX2VH7w==",
|
558 |
+
"cpu": [
|
559 |
+
"arm64"
|
560 |
+
],
|
561 |
+
"dev": true,
|
562 |
+
"license": "MIT",
|
563 |
+
"optional": true,
|
564 |
+
"os": [
|
565 |
+
"linux"
|
566 |
+
]
|
567 |
+
},
|
568 |
+
"node_modules/@rollup/rollup-linux-arm64-musl": {
|
569 |
+
"version": "4.32.0",
|
570 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.32.0.tgz",
|
571 |
+
"integrity": "sha512-HJbifC9vex9NqnlodV2BHVFNuzKL5OnsV2dvTw6e1dpZKkNjPG6WUq+nhEYV6Hv2Bv++BXkwcyoGlXnPrjAKXw==",
|
572 |
+
"cpu": [
|
573 |
+
"arm64"
|
574 |
+
],
|
575 |
+
"dev": true,
|
576 |
+
"license": "MIT",
|
577 |
+
"optional": true,
|
578 |
+
"os": [
|
579 |
+
"linux"
|
580 |
+
]
|
581 |
+
},
|
582 |
+
"node_modules/@rollup/rollup-linux-loongarch64-gnu": {
|
583 |
+
"version": "4.32.0",
|
584 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.32.0.tgz",
|
585 |
+
"integrity": "sha512-VAEzZTD63YglFlWwRj3taofmkV1V3xhebDXffon7msNz4b14xKsz7utO6F8F4cqt8K/ktTl9rm88yryvDpsfOw==",
|
586 |
+
"cpu": [
|
587 |
+
"loong64"
|
588 |
+
],
|
589 |
+
"dev": true,
|
590 |
+
"license": "MIT",
|
591 |
+
"optional": true,
|
592 |
+
"os": [
|
593 |
+
"linux"
|
594 |
+
]
|
595 |
+
},
|
596 |
+
"node_modules/@rollup/rollup-linux-powerpc64le-gnu": {
|
597 |
+
"version": "4.32.0",
|
598 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.32.0.tgz",
|
599 |
+
"integrity": "sha512-Sts5DST1jXAc9YH/iik1C9QRsLcCoOScf3dfbY5i4kH9RJpKxiTBXqm7qU5O6zTXBTEZry69bGszr3SMgYmMcQ==",
|
600 |
+
"cpu": [
|
601 |
+
"ppc64"
|
602 |
+
],
|
603 |
+
"dev": true,
|
604 |
+
"license": "MIT",
|
605 |
+
"optional": true,
|
606 |
+
"os": [
|
607 |
+
"linux"
|
608 |
+
]
|
609 |
+
},
|
610 |
+
"node_modules/@rollup/rollup-linux-riscv64-gnu": {
|
611 |
+
"version": "4.32.0",
|
612 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.32.0.tgz",
|
613 |
+
"integrity": "sha512-qhlXeV9AqxIyY9/R1h1hBD6eMvQCO34ZmdYvry/K+/MBs6d1nRFLm6BOiITLVI+nFAAB9kUB6sdJRKyVHXnqZw==",
|
614 |
+
"cpu": [
|
615 |
+
"riscv64"
|
616 |
+
],
|
617 |
+
"dev": true,
|
618 |
+
"license": "MIT",
|
619 |
+
"optional": true,
|
620 |
+
"os": [
|
621 |
+
"linux"
|
622 |
+
]
|
623 |
+
},
|
624 |
+
"node_modules/@rollup/rollup-linux-s390x-gnu": {
|
625 |
+
"version": "4.32.0",
|
626 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.32.0.tgz",
|
627 |
+
"integrity": "sha512-8ZGN7ExnV0qjXa155Rsfi6H8M4iBBwNLBM9lcVS+4NcSzOFaNqmt7djlox8pN1lWrRPMRRQ8NeDlozIGx3Omsw==",
|
628 |
+
"cpu": [
|
629 |
+
"s390x"
|
630 |
+
],
|
631 |
+
"dev": true,
|
632 |
+
"license": "MIT",
|
633 |
+
"optional": true,
|
634 |
+
"os": [
|
635 |
+
"linux"
|
636 |
+
]
|
637 |
+
},
|
638 |
+
"node_modules/@rollup/rollup-linux-x64-gnu": {
|
639 |
+
"version": "4.32.0",
|
640 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.32.0.tgz",
|
641 |
+
"integrity": "sha512-VDzNHtLLI5s7xd/VubyS10mq6TxvZBp+4NRWoW+Hi3tgV05RtVm4qK99+dClwTN1McA6PHwob6DEJ6PlXbY83A==",
|
642 |
+
"cpu": [
|
643 |
+
"x64"
|
644 |
+
],
|
645 |
+
"dev": true,
|
646 |
+
"license": "MIT",
|
647 |
+
"optional": true,
|
648 |
+
"os": [
|
649 |
+
"linux"
|
650 |
+
]
|
651 |
+
},
|
652 |
+
"node_modules/@rollup/rollup-linux-x64-musl": {
|
653 |
+
"version": "4.32.0",
|
654 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.32.0.tgz",
|
655 |
+
"integrity": "sha512-qcb9qYDlkxz9DxJo7SDhWxTWV1gFuwznjbTiov289pASxlfGbaOD54mgbs9+z94VwrXtKTu+2RqwlSTbiOqxGg==",
|
656 |
+
"cpu": [
|
657 |
+
"x64"
|
658 |
+
],
|
659 |
+
"dev": true,
|
660 |
+
"license": "MIT",
|
661 |
+
"optional": true,
|
662 |
+
"os": [
|
663 |
+
"linux"
|
664 |
+
]
|
665 |
+
},
|
666 |
+
"node_modules/@rollup/rollup-win32-arm64-msvc": {
|
667 |
+
"version": "4.32.0",
|
668 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.32.0.tgz",
|
669 |
+
"integrity": "sha512-pFDdotFDMXW2AXVbfdUEfidPAk/OtwE/Hd4eYMTNVVaCQ6Yl8et0meDaKNL63L44Haxv4UExpv9ydSf3aSayDg==",
|
670 |
+
"cpu": [
|
671 |
+
"arm64"
|
672 |
+
],
|
673 |
+
"dev": true,
|
674 |
+
"license": "MIT",
|
675 |
+
"optional": true,
|
676 |
+
"os": [
|
677 |
+
"win32"
|
678 |
+
]
|
679 |
+
},
|
680 |
+
"node_modules/@rollup/rollup-win32-ia32-msvc": {
|
681 |
+
"version": "4.32.0",
|
682 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.32.0.tgz",
|
683 |
+
"integrity": "sha512-/TG7WfrCAjeRNDvI4+0AAMoHxea/USWhAzf9PVDFHbcqrQ7hMMKp4jZIy4VEjk72AAfN5k4TiSMRXRKf/0akSw==",
|
684 |
+
"cpu": [
|
685 |
+
"ia32"
|
686 |
+
],
|
687 |
+
"dev": true,
|
688 |
+
"license": "MIT",
|
689 |
+
"optional": true,
|
690 |
+
"os": [
|
691 |
+
"win32"
|
692 |
+
]
|
693 |
+
},
|
694 |
+
"node_modules/@rollup/rollup-win32-x64-msvc": {
|
695 |
+
"version": "4.32.0",
|
696 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.32.0.tgz",
|
697 |
+
"integrity": "sha512-5hqO5S3PTEO2E5VjCePxv40gIgyS2KvO7E7/vvC/NbIW4SIRamkMr1hqj+5Y67fbBWv/bQLB6KelBQmXlyCjWA==",
|
698 |
+
"cpu": [
|
699 |
+
"x64"
|
700 |
+
],
|
701 |
+
"dev": true,
|
702 |
+
"license": "MIT",
|
703 |
+
"optional": true,
|
704 |
+
"os": [
|
705 |
+
"win32"
|
706 |
+
]
|
707 |
+
},
|
708 |
+
"node_modules/@types/estree": {
|
709 |
+
"version": "1.0.6",
|
710 |
+
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz",
|
711 |
+
"integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==",
|
712 |
+
"dev": true,
|
713 |
+
"license": "MIT"
|
714 |
+
},
|
715 |
+
"node_modules/abort-controller": {
|
716 |
+
"version": "3.0.0",
|
717 |
+
"resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz",
|
718 |
+
"integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==",
|
719 |
+
"license": "MIT",
|
720 |
+
"dependencies": {
|
721 |
+
"event-target-shim": "^5.0.0"
|
722 |
+
},
|
723 |
+
"engines": {
|
724 |
+
"node": ">=6.5"
|
725 |
+
}
|
726 |
+
},
|
727 |
+
"node_modules/asynckit": {
|
728 |
+
"version": "0.4.0",
|
729 |
+
"resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
|
730 |
+
"integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
|
731 |
+
"license": "MIT"
|
732 |
+
},
|
733 |
+
"node_modules/base64-js": {
|
734 |
+
"version": "1.5.1",
|
735 |
+
"resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
|
736 |
+
"integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
|
737 |
+
"funding": [
|
738 |
+
{
|
739 |
+
"type": "github",
|
740 |
+
"url": "https://github.com/sponsors/feross"
|
741 |
+
},
|
742 |
+
{
|
743 |
+
"type": "patreon",
|
744 |
+
"url": "https://www.patreon.com/feross"
|
745 |
+
},
|
746 |
+
{
|
747 |
+
"type": "consulting",
|
748 |
+
"url": "https://feross.org/support"
|
749 |
+
}
|
750 |
+
],
|
751 |
+
"license": "MIT"
|
752 |
+
},
|
753 |
+
"node_modules/buffer": {
|
754 |
+
"version": "6.0.3",
|
755 |
+
"resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz",
|
756 |
+
"integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==",
|
757 |
+
"funding": [
|
758 |
+
{
|
759 |
+
"type": "github",
|
760 |
+
"url": "https://github.com/sponsors/feross"
|
761 |
+
},
|
762 |
+
{
|
763 |
+
"type": "patreon",
|
764 |
+
"url": "https://www.patreon.com/feross"
|
765 |
+
},
|
766 |
+
{
|
767 |
+
"type": "consulting",
|
768 |
+
"url": "https://feross.org/support"
|
769 |
+
}
|
770 |
+
],
|
771 |
+
"license": "MIT",
|
772 |
+
"dependencies": {
|
773 |
+
"base64-js": "^1.3.1",
|
774 |
+
"ieee754": "^1.2.1"
|
775 |
+
}
|
776 |
+
},
|
777 |
+
"node_modules/call-bind-apply-helpers": {
|
778 |
+
"version": "1.0.1",
|
779 |
+
"resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.1.tgz",
|
780 |
+
"integrity": "sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==",
|
781 |
+
"license": "MIT",
|
782 |
+
"dependencies": {
|
783 |
+
"es-errors": "^1.3.0",
|
784 |
+
"function-bind": "^1.1.2"
|
785 |
+
},
|
786 |
+
"engines": {
|
787 |
+
"node": ">= 0.4"
|
788 |
+
}
|
789 |
+
},
|
790 |
+
"node_modules/call-bound": {
|
791 |
+
"version": "1.0.3",
|
792 |
+
"resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.3.tgz",
|
793 |
+
"integrity": "sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==",
|
794 |
+
"license": "MIT",
|
795 |
+
"dependencies": {
|
796 |
+
"call-bind-apply-helpers": "^1.0.1",
|
797 |
+
"get-intrinsic": "^1.2.6"
|
798 |
+
},
|
799 |
+
"engines": {
|
800 |
+
"node": ">= 0.4"
|
801 |
+
},
|
802 |
+
"funding": {
|
803 |
+
"url": "https://github.com/sponsors/ljharb"
|
804 |
+
}
|
805 |
+
},
|
806 |
+
"node_modules/combined-stream": {
|
807 |
+
"version": "1.0.8",
|
808 |
+
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
|
809 |
+
"integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
|
810 |
+
"license": "MIT",
|
811 |
+
"dependencies": {
|
812 |
+
"delayed-stream": "~1.0.0"
|
813 |
+
},
|
814 |
+
"engines": {
|
815 |
+
"node": ">= 0.8"
|
816 |
+
}
|
817 |
+
},
|
818 |
+
"node_modules/command-exists": {
|
819 |
+
"version": "1.2.9",
|
820 |
+
"resolved": "https://registry.npmjs.org/command-exists/-/command-exists-1.2.9.tgz",
|
821 |
+
"integrity": "sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==",
|
822 |
+
"license": "MIT"
|
823 |
+
},
|
824 |
+
"node_modules/cross-spawn": {
|
825 |
+
"version": "7.0.6",
|
826 |
+
"resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
|
827 |
+
"integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
|
828 |
+
"license": "MIT",
|
829 |
+
"dependencies": {
|
830 |
+
"path-key": "^3.1.0",
|
831 |
+
"shebang-command": "^2.0.0",
|
832 |
+
"which": "^2.0.1"
|
833 |
+
},
|
834 |
+
"engines": {
|
835 |
+
"node": ">= 8"
|
836 |
+
}
|
837 |
+
},
|
838 |
+
"node_modules/delayed-stream": {
|
839 |
+
"version": "1.0.0",
|
840 |
+
"resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
|
841 |
+
"integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
|
842 |
+
"license": "MIT",
|
843 |
+
"engines": {
|
844 |
+
"node": ">=0.4.0"
|
845 |
+
}
|
846 |
+
},
|
847 |
+
"node_modules/dunder-proto": {
|
848 |
+
"version": "1.0.1",
|
849 |
+
"resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
|
850 |
+
"integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
|
851 |
+
"license": "MIT",
|
852 |
+
"dependencies": {
|
853 |
+
"call-bind-apply-helpers": "^1.0.1",
|
854 |
+
"es-errors": "^1.3.0",
|
855 |
+
"gopd": "^1.2.0"
|
856 |
+
},
|
857 |
+
"engines": {
|
858 |
+
"node": ">= 0.4"
|
859 |
+
}
|
860 |
+
},
|
861 |
+
"node_modules/elevenlabs": {
|
862 |
+
"version": "1.50.4",
|
863 |
+
"resolved": "https://registry.npmjs.org/elevenlabs/-/elevenlabs-1.50.4.tgz",
|
864 |
+
"integrity": "sha512-c/g9tORpzi/5wd//2avzRvnZ0ujEKSZi3Jn6FO93gcWXHvftTuundGBwgNcIAyzZo9oRW5VlNxMYFHEZOdc1Fg==",
|
865 |
+
"license": "MIT",
|
866 |
+
"dependencies": {
|
867 |
+
"command-exists": "^1.2.9",
|
868 |
+
"execa": "^5.1.1",
|
869 |
+
"form-data": "^4.0.0",
|
870 |
+
"form-data-encoder": "^4.0.2",
|
871 |
+
"formdata-node": "^6.0.3",
|
872 |
+
"node-fetch": "2.7.0",
|
873 |
+
"qs": "6.11.2",
|
874 |
+
"readable-stream": "^4.5.2",
|
875 |
+
"url-join": "4.0.1"
|
876 |
+
}
|
877 |
+
},
|
878 |
+
"node_modules/es-define-property": {
|
879 |
+
"version": "1.0.1",
|
880 |
+
"resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
|
881 |
+
"integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
|
882 |
+
"license": "MIT",
|
883 |
+
"engines": {
|
884 |
+
"node": ">= 0.4"
|
885 |
+
}
|
886 |
+
},
|
887 |
+
"node_modules/es-errors": {
|
888 |
+
"version": "1.3.0",
|
889 |
+
"resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
|
890 |
+
"integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
|
891 |
+
"license": "MIT",
|
892 |
+
"engines": {
|
893 |
+
"node": ">= 0.4"
|
894 |
+
}
|
895 |
+
},
|
896 |
+
"node_modules/es-object-atoms": {
|
897 |
+
"version": "1.1.1",
|
898 |
+
"resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
|
899 |
+
"integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
|
900 |
+
"license": "MIT",
|
901 |
+
"dependencies": {
|
902 |
+
"es-errors": "^1.3.0"
|
903 |
+
},
|
904 |
+
"engines": {
|
905 |
+
"node": ">= 0.4"
|
906 |
+
}
|
907 |
+
},
|
908 |
+
"node_modules/esbuild": {
|
909 |
+
"version": "0.24.2",
|
910 |
+
"resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.24.2.tgz",
|
911 |
+
"integrity": "sha512-+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA==",
|
912 |
+
"dev": true,
|
913 |
+
"hasInstallScript": true,
|
914 |
+
"license": "MIT",
|
915 |
+
"bin": {
|
916 |
+
"esbuild": "bin/esbuild"
|
917 |
+
},
|
918 |
+
"engines": {
|
919 |
+
"node": ">=18"
|
920 |
+
},
|
921 |
+
"optionalDependencies": {
|
922 |
+
"@esbuild/aix-ppc64": "0.24.2",
|
923 |
+
"@esbuild/android-arm": "0.24.2",
|
924 |
+
"@esbuild/android-arm64": "0.24.2",
|
925 |
+
"@esbuild/android-x64": "0.24.2",
|
926 |
+
"@esbuild/darwin-arm64": "0.24.2",
|
927 |
+
"@esbuild/darwin-x64": "0.24.2",
|
928 |
+
"@esbuild/freebsd-arm64": "0.24.2",
|
929 |
+
"@esbuild/freebsd-x64": "0.24.2",
|
930 |
+
"@esbuild/linux-arm": "0.24.2",
|
931 |
+
"@esbuild/linux-arm64": "0.24.2",
|
932 |
+
"@esbuild/linux-ia32": "0.24.2",
|
933 |
+
"@esbuild/linux-loong64": "0.24.2",
|
934 |
+
"@esbuild/linux-mips64el": "0.24.2",
|
935 |
+
"@esbuild/linux-ppc64": "0.24.2",
|
936 |
+
"@esbuild/linux-riscv64": "0.24.2",
|
937 |
+
"@esbuild/linux-s390x": "0.24.2",
|
938 |
+
"@esbuild/linux-x64": "0.24.2",
|
939 |
+
"@esbuild/netbsd-arm64": "0.24.2",
|
940 |
+
"@esbuild/netbsd-x64": "0.24.2",
|
941 |
+
"@esbuild/openbsd-arm64": "0.24.2",
|
942 |
+
"@esbuild/openbsd-x64": "0.24.2",
|
943 |
+
"@esbuild/sunos-x64": "0.24.2",
|
944 |
+
"@esbuild/win32-arm64": "0.24.2",
|
945 |
+
"@esbuild/win32-ia32": "0.24.2",
|
946 |
+
"@esbuild/win32-x64": "0.24.2"
|
947 |
+
}
|
948 |
+
},
|
949 |
+
"node_modules/event-target-shim": {
|
950 |
+
"version": "5.0.1",
|
951 |
+
"resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz",
|
952 |
+
"integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==",
|
953 |
+
"license": "MIT",
|
954 |
+
"engines": {
|
955 |
+
"node": ">=6"
|
956 |
+
}
|
957 |
+
},
|
958 |
+
"node_modules/events": {
|
959 |
+
"version": "3.3.0",
|
960 |
+
"resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz",
|
961 |
+
"integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==",
|
962 |
+
"license": "MIT",
|
963 |
+
"engines": {
|
964 |
+
"node": ">=0.8.x"
|
965 |
+
}
|
966 |
+
},
|
967 |
+
"node_modules/execa": {
|
968 |
+
"version": "5.1.1",
|
969 |
+
"resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz",
|
970 |
+
"integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==",
|
971 |
+
"license": "MIT",
|
972 |
+
"dependencies": {
|
973 |
+
"cross-spawn": "^7.0.3",
|
974 |
+
"get-stream": "^6.0.0",
|
975 |
+
"human-signals": "^2.1.0",
|
976 |
+
"is-stream": "^2.0.0",
|
977 |
+
"merge-stream": "^2.0.0",
|
978 |
+
"npm-run-path": "^4.0.1",
|
979 |
+
"onetime": "^5.1.2",
|
980 |
+
"signal-exit": "^3.0.3",
|
981 |
+
"strip-final-newline": "^2.0.0"
|
982 |
+
},
|
983 |
+
"engines": {
|
984 |
+
"node": ">=10"
|
985 |
+
},
|
986 |
+
"funding": {
|
987 |
+
"url": "https://github.com/sindresorhus/execa?sponsor=1"
|
988 |
+
}
|
989 |
+
},
|
990 |
+
"node_modules/form-data": {
|
991 |
+
"version": "4.0.1",
|
992 |
+
"resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.1.tgz",
|
993 |
+
"integrity": "sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==",
|
994 |
+
"license": "MIT",
|
995 |
+
"dependencies": {
|
996 |
+
"asynckit": "^0.4.0",
|
997 |
+
"combined-stream": "^1.0.8",
|
998 |
+
"mime-types": "^2.1.12"
|
999 |
+
},
|
1000 |
+
"engines": {
|
1001 |
+
"node": ">= 6"
|
1002 |
+
}
|
1003 |
+
},
|
1004 |
+
"node_modules/form-data-encoder": {
|
1005 |
+
"version": "4.0.2",
|
1006 |
+
"resolved": "https://registry.npmjs.org/form-data-encoder/-/form-data-encoder-4.0.2.tgz",
|
1007 |
+
"integrity": "sha512-KQVhvhK8ZkWzxKxOr56CPulAhH3dobtuQ4+hNQ+HekH/Wp5gSOafqRAeTphQUJAIk0GBvHZgJ2ZGRWd5kphMuw==",
|
1008 |
+
"license": "MIT",
|
1009 |
+
"engines": {
|
1010 |
+
"node": ">= 18"
|
1011 |
+
}
|
1012 |
+
},
|
1013 |
+
"node_modules/formdata-node": {
|
1014 |
+
"version": "6.0.3",
|
1015 |
+
"resolved": "https://registry.npmjs.org/formdata-node/-/formdata-node-6.0.3.tgz",
|
1016 |
+
"integrity": "sha512-8e1++BCiTzUno9v5IZ2J6bv4RU+3UKDmqWUQD0MIMVCd9AdhWkO1gw57oo1mNEX1dMq2EGI+FbWz4B92pscSQg==",
|
1017 |
+
"license": "MIT",
|
1018 |
+
"engines": {
|
1019 |
+
"node": ">= 18"
|
1020 |
+
}
|
1021 |
+
},
|
1022 |
+
"node_modules/fsevents": {
|
1023 |
+
"version": "2.3.3",
|
1024 |
+
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
|
1025 |
+
"integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
|
1026 |
+
"dev": true,
|
1027 |
+
"hasInstallScript": true,
|
1028 |
+
"license": "MIT",
|
1029 |
+
"optional": true,
|
1030 |
+
"os": [
|
1031 |
+
"darwin"
|
1032 |
+
],
|
1033 |
+
"engines": {
|
1034 |
+
"node": "^8.16.0 || ^10.6.0 || >=11.0.0"
|
1035 |
+
}
|
1036 |
+
},
|
1037 |
+
"node_modules/function-bind": {
|
1038 |
+
"version": "1.1.2",
|
1039 |
+
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
|
1040 |
+
"integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
|
1041 |
+
"license": "MIT",
|
1042 |
+
"funding": {
|
1043 |
+
"url": "https://github.com/sponsors/ljharb"
|
1044 |
+
}
|
1045 |
+
},
|
1046 |
+
"node_modules/get-intrinsic": {
|
1047 |
+
"version": "1.2.7",
|
1048 |
+
"resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.7.tgz",
|
1049 |
+
"integrity": "sha512-VW6Pxhsrk0KAOqs3WEd0klDiF/+V7gQOpAvY1jVU/LHmaD/kQO4523aiJuikX/QAKYiW6x8Jh+RJej1almdtCA==",
|
1050 |
+
"license": "MIT",
|
1051 |
+
"dependencies": {
|
1052 |
+
"call-bind-apply-helpers": "^1.0.1",
|
1053 |
+
"es-define-property": "^1.0.1",
|
1054 |
+
"es-errors": "^1.3.0",
|
1055 |
+
"es-object-atoms": "^1.0.0",
|
1056 |
+
"function-bind": "^1.1.2",
|
1057 |
+
"get-proto": "^1.0.0",
|
1058 |
+
"gopd": "^1.2.0",
|
1059 |
+
"has-symbols": "^1.1.0",
|
1060 |
+
"hasown": "^2.0.2",
|
1061 |
+
"math-intrinsics": "^1.1.0"
|
1062 |
+
},
|
1063 |
+
"engines": {
|
1064 |
+
"node": ">= 0.4"
|
1065 |
+
},
|
1066 |
+
"funding": {
|
1067 |
+
"url": "https://github.com/sponsors/ljharb"
|
1068 |
+
}
|
1069 |
+
},
|
1070 |
+
"node_modules/get-proto": {
|
1071 |
+
"version": "1.0.1",
|
1072 |
+
"resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
|
1073 |
+
"integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
|
1074 |
+
"license": "MIT",
|
1075 |
+
"dependencies": {
|
1076 |
+
"dunder-proto": "^1.0.1",
|
1077 |
+
"es-object-atoms": "^1.0.0"
|
1078 |
+
},
|
1079 |
+
"engines": {
|
1080 |
+
"node": ">= 0.4"
|
1081 |
+
}
|
1082 |
+
},
|
1083 |
+
"node_modules/get-stream": {
|
1084 |
+
"version": "6.0.1",
|
1085 |
+
"resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz",
|
1086 |
+
"integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==",
|
1087 |
+
"license": "MIT",
|
1088 |
+
"engines": {
|
1089 |
+
"node": ">=10"
|
1090 |
+
},
|
1091 |
+
"funding": {
|
1092 |
+
"url": "https://github.com/sponsors/sindresorhus"
|
1093 |
+
}
|
1094 |
+
},
|
1095 |
+
"node_modules/gopd": {
|
1096 |
+
"version": "1.2.0",
|
1097 |
+
"resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
|
1098 |
+
"integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
|
1099 |
+
"license": "MIT",
|
1100 |
+
"engines": {
|
1101 |
+
"node": ">= 0.4"
|
1102 |
+
},
|
1103 |
+
"funding": {
|
1104 |
+
"url": "https://github.com/sponsors/ljharb"
|
1105 |
+
}
|
1106 |
+
},
|
1107 |
+
"node_modules/has-symbols": {
|
1108 |
+
"version": "1.1.0",
|
1109 |
+
"resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
|
1110 |
+
"integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
|
1111 |
+
"license": "MIT",
|
1112 |
+
"engines": {
|
1113 |
+
"node": ">= 0.4"
|
1114 |
+
},
|
1115 |
+
"funding": {
|
1116 |
+
"url": "https://github.com/sponsors/ljharb"
|
1117 |
+
}
|
1118 |
+
},
|
1119 |
+
"node_modules/hasown": {
|
1120 |
+
"version": "2.0.2",
|
1121 |
+
"resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
|
1122 |
+
"integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
|
1123 |
+
"license": "MIT",
|
1124 |
+
"dependencies": {
|
1125 |
+
"function-bind": "^1.1.2"
|
1126 |
+
},
|
1127 |
+
"engines": {
|
1128 |
+
"node": ">= 0.4"
|
1129 |
+
}
|
1130 |
+
},
|
1131 |
+
"node_modules/human-signals": {
|
1132 |
+
"version": "2.1.0",
|
1133 |
+
"resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz",
|
1134 |
+
"integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==",
|
1135 |
+
"license": "Apache-2.0",
|
1136 |
+
"engines": {
|
1137 |
+
"node": ">=10.17.0"
|
1138 |
+
}
|
1139 |
+
},
|
1140 |
+
"node_modules/ieee754": {
|
1141 |
+
"version": "1.2.1",
|
1142 |
+
"resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
|
1143 |
+
"integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
|
1144 |
+
"funding": [
|
1145 |
+
{
|
1146 |
+
"type": "github",
|
1147 |
+
"url": "https://github.com/sponsors/feross"
|
1148 |
+
},
|
1149 |
+
{
|
1150 |
+
"type": "patreon",
|
1151 |
+
"url": "https://www.patreon.com/feross"
|
1152 |
+
},
|
1153 |
+
{
|
1154 |
+
"type": "consulting",
|
1155 |
+
"url": "https://feross.org/support"
|
1156 |
+
}
|
1157 |
+
],
|
1158 |
+
"license": "BSD-3-Clause"
|
1159 |
+
},
|
1160 |
+
"node_modules/is-stream": {
|
1161 |
+
"version": "2.0.1",
|
1162 |
+
"resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz",
|
1163 |
+
"integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==",
|
1164 |
+
"license": "MIT",
|
1165 |
+
"engines": {
|
1166 |
+
"node": ">=8"
|
1167 |
+
},
|
1168 |
+
"funding": {
|
1169 |
+
"url": "https://github.com/sponsors/sindresorhus"
|
1170 |
+
}
|
1171 |
+
},
|
1172 |
+
"node_modules/isexe": {
|
1173 |
+
"version": "2.0.0",
|
1174 |
+
"resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
|
1175 |
+
"integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
|
1176 |
+
"license": "ISC"
|
1177 |
+
},
|
1178 |
+
"node_modules/math-intrinsics": {
|
1179 |
+
"version": "1.1.0",
|
1180 |
+
"resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
|
1181 |
+
"integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
|
1182 |
+
"license": "MIT",
|
1183 |
+
"engines": {
|
1184 |
+
"node": ">= 0.4"
|
1185 |
+
}
|
1186 |
+
},
|
1187 |
+
"node_modules/merge-stream": {
|
1188 |
+
"version": "2.0.0",
|
1189 |
+
"resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz",
|
1190 |
+
"integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==",
|
1191 |
+
"license": "MIT"
|
1192 |
+
},
|
1193 |
+
"node_modules/mime-db": {
|
1194 |
+
"version": "1.52.0",
|
1195 |
+
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
|
1196 |
+
"integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
|
1197 |
+
"license": "MIT",
|
1198 |
+
"engines": {
|
1199 |
+
"node": ">= 0.6"
|
1200 |
+
}
|
1201 |
+
},
|
1202 |
+
"node_modules/mime-types": {
|
1203 |
+
"version": "2.1.35",
|
1204 |
+
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
|
1205 |
+
"integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
|
1206 |
+
"license": "MIT",
|
1207 |
+
"dependencies": {
|
1208 |
+
"mime-db": "1.52.0"
|
1209 |
+
},
|
1210 |
+
"engines": {
|
1211 |
+
"node": ">= 0.6"
|
1212 |
+
}
|
1213 |
+
},
|
1214 |
+
"node_modules/mimic-fn": {
|
1215 |
+
"version": "2.1.0",
|
1216 |
+
"resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz",
|
1217 |
+
"integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==",
|
1218 |
+
"license": "MIT",
|
1219 |
+
"engines": {
|
1220 |
+
"node": ">=6"
|
1221 |
+
}
|
1222 |
+
},
|
1223 |
+
"node_modules/nanoid": {
|
1224 |
+
"version": "3.3.8",
|
1225 |
+
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz",
|
1226 |
+
"integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==",
|
1227 |
+
"dev": true,
|
1228 |
+
"funding": [
|
1229 |
+
{
|
1230 |
+
"type": "github",
|
1231 |
+
"url": "https://github.com/sponsors/ai"
|
1232 |
+
}
|
1233 |
+
],
|
1234 |
+
"license": "MIT",
|
1235 |
+
"bin": {
|
1236 |
+
"nanoid": "bin/nanoid.cjs"
|
1237 |
+
},
|
1238 |
+
"engines": {
|
1239 |
+
"node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
|
1240 |
+
}
|
1241 |
+
},
|
1242 |
+
"node_modules/node-fetch": {
|
1243 |
+
"version": "2.7.0",
|
1244 |
+
"resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz",
|
1245 |
+
"integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==",
|
1246 |
+
"license": "MIT",
|
1247 |
+
"dependencies": {
|
1248 |
+
"whatwg-url": "^5.0.0"
|
1249 |
+
},
|
1250 |
+
"engines": {
|
1251 |
+
"node": "4.x || >=6.0.0"
|
1252 |
+
},
|
1253 |
+
"peerDependencies": {
|
1254 |
+
"encoding": "^0.1.0"
|
1255 |
+
},
|
1256 |
+
"peerDependenciesMeta": {
|
1257 |
+
"encoding": {
|
1258 |
+
"optional": true
|
1259 |
+
}
|
1260 |
+
}
|
1261 |
+
},
|
1262 |
+
"node_modules/npm-run-path": {
|
1263 |
+
"version": "4.0.1",
|
1264 |
+
"resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz",
|
1265 |
+
"integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==",
|
1266 |
+
"license": "MIT",
|
1267 |
+
"dependencies": {
|
1268 |
+
"path-key": "^3.0.0"
|
1269 |
+
},
|
1270 |
+
"engines": {
|
1271 |
+
"node": ">=8"
|
1272 |
+
}
|
1273 |
+
},
|
1274 |
+
"node_modules/object-inspect": {
|
1275 |
+
"version": "1.13.3",
|
1276 |
+
"resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.3.tgz",
|
1277 |
+
"integrity": "sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==",
|
1278 |
+
"license": "MIT",
|
1279 |
+
"engines": {
|
1280 |
+
"node": ">= 0.4"
|
1281 |
+
},
|
1282 |
+
"funding": {
|
1283 |
+
"url": "https://github.com/sponsors/ljharb"
|
1284 |
+
}
|
1285 |
+
},
|
1286 |
+
"node_modules/onetime": {
|
1287 |
+
"version": "5.1.2",
|
1288 |
+
"resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz",
|
1289 |
+
"integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==",
|
1290 |
+
"license": "MIT",
|
1291 |
+
"dependencies": {
|
1292 |
+
"mimic-fn": "^2.1.0"
|
1293 |
+
},
|
1294 |
+
"engines": {
|
1295 |
+
"node": ">=6"
|
1296 |
+
},
|
1297 |
+
"funding": {
|
1298 |
+
"url": "https://github.com/sponsors/sindresorhus"
|
1299 |
+
}
|
1300 |
+
},
|
1301 |
+
"node_modules/path-key": {
|
1302 |
+
"version": "3.1.1",
|
1303 |
+
"resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
|
1304 |
+
"integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
|
1305 |
+
"license": "MIT",
|
1306 |
+
"engines": {
|
1307 |
+
"node": ">=8"
|
1308 |
+
}
|
1309 |
+
},
|
1310 |
+
"node_modules/picocolors": {
|
1311 |
+
"version": "1.1.1",
|
1312 |
+
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
|
1313 |
+
"integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
|
1314 |
+
"dev": true,
|
1315 |
+
"license": "ISC"
|
1316 |
+
},
|
1317 |
+
"node_modules/postcss": {
|
1318 |
+
"version": "8.5.1",
|
1319 |
+
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.1.tgz",
|
1320 |
+
"integrity": "sha512-6oz2beyjc5VMn/KV1pPw8fliQkhBXrVn1Z3TVyqZxU8kZpzEKhBdmCFqI6ZbmGtamQvQGuU1sgPTk8ZrXDD7jQ==",
|
1321 |
+
"dev": true,
|
1322 |
+
"funding": [
|
1323 |
+
{
|
1324 |
+
"type": "opencollective",
|
1325 |
+
"url": "https://opencollective.com/postcss/"
|
1326 |
+
},
|
1327 |
+
{
|
1328 |
+
"type": "tidelift",
|
1329 |
+
"url": "https://tidelift.com/funding/github/npm/postcss"
|
1330 |
+
},
|
1331 |
+
{
|
1332 |
+
"type": "github",
|
1333 |
+
"url": "https://github.com/sponsors/ai"
|
1334 |
+
}
|
1335 |
+
],
|
1336 |
+
"license": "MIT",
|
1337 |
+
"dependencies": {
|
1338 |
+
"nanoid": "^3.3.8",
|
1339 |
+
"picocolors": "^1.1.1",
|
1340 |
+
"source-map-js": "^1.2.1"
|
1341 |
+
},
|
1342 |
+
"engines": {
|
1343 |
+
"node": "^10 || ^12 || >=14"
|
1344 |
+
}
|
1345 |
+
},
|
1346 |
+
"node_modules/process": {
|
1347 |
+
"version": "0.11.10",
|
1348 |
+
"resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz",
|
1349 |
+
"integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==",
|
1350 |
+
"license": "MIT",
|
1351 |
+
"engines": {
|
1352 |
+
"node": ">= 0.6.0"
|
1353 |
+
}
|
1354 |
+
},
|
1355 |
+
"node_modules/qs": {
|
1356 |
+
"version": "6.11.2",
|
1357 |
+
"resolved": "https://registry.npmjs.org/qs/-/qs-6.11.2.tgz",
|
1358 |
+
"integrity": "sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==",
|
1359 |
+
"license": "BSD-3-Clause",
|
1360 |
+
"dependencies": {
|
1361 |
+
"side-channel": "^1.0.4"
|
1362 |
+
},
|
1363 |
+
"engines": {
|
1364 |
+
"node": ">=0.6"
|
1365 |
+
},
|
1366 |
+
"funding": {
|
1367 |
+
"url": "https://github.com/sponsors/ljharb"
|
1368 |
+
}
|
1369 |
+
},
|
1370 |
+
"node_modules/readable-stream": {
|
1371 |
+
"version": "4.7.0",
|
1372 |
+
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.7.0.tgz",
|
1373 |
+
"integrity": "sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg==",
|
1374 |
+
"license": "MIT",
|
1375 |
+
"dependencies": {
|
1376 |
+
"abort-controller": "^3.0.0",
|
1377 |
+
"buffer": "^6.0.3",
|
1378 |
+
"events": "^3.3.0",
|
1379 |
+
"process": "^0.11.10",
|
1380 |
+
"string_decoder": "^1.3.0"
|
1381 |
+
},
|
1382 |
+
"engines": {
|
1383 |
+
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
|
1384 |
+
}
|
1385 |
+
},
|
1386 |
+
"node_modules/rollup": {
|
1387 |
+
"version": "4.32.0",
|
1388 |
+
"resolved": "https://registry.npmjs.org/rollup/-/rollup-4.32.0.tgz",
|
1389 |
+
"integrity": "sha512-JmrhfQR31Q4AuNBjjAX4s+a/Pu/Q8Q9iwjWBsjRH1q52SPFE2NqRMK6fUZKKnvKO6id+h7JIRf0oYsph53eATg==",
|
1390 |
+
"dev": true,
|
1391 |
+
"license": "MIT",
|
1392 |
+
"dependencies": {
|
1393 |
+
"@types/estree": "1.0.6"
|
1394 |
+
},
|
1395 |
+
"bin": {
|
1396 |
+
"rollup": "dist/bin/rollup"
|
1397 |
+
},
|
1398 |
+
"engines": {
|
1399 |
+
"node": ">=18.0.0",
|
1400 |
+
"npm": ">=8.0.0"
|
1401 |
+
},
|
1402 |
+
"optionalDependencies": {
|
1403 |
+
"@rollup/rollup-android-arm-eabi": "4.32.0",
|
1404 |
+
"@rollup/rollup-android-arm64": "4.32.0",
|
1405 |
+
"@rollup/rollup-darwin-arm64": "4.32.0",
|
1406 |
+
"@rollup/rollup-darwin-x64": "4.32.0",
|
1407 |
+
"@rollup/rollup-freebsd-arm64": "4.32.0",
|
1408 |
+
"@rollup/rollup-freebsd-x64": "4.32.0",
|
1409 |
+
"@rollup/rollup-linux-arm-gnueabihf": "4.32.0",
|
1410 |
+
"@rollup/rollup-linux-arm-musleabihf": "4.32.0",
|
1411 |
+
"@rollup/rollup-linux-arm64-gnu": "4.32.0",
|
1412 |
+
"@rollup/rollup-linux-arm64-musl": "4.32.0",
|
1413 |
+
"@rollup/rollup-linux-loongarch64-gnu": "4.32.0",
|
1414 |
+
"@rollup/rollup-linux-powerpc64le-gnu": "4.32.0",
|
1415 |
+
"@rollup/rollup-linux-riscv64-gnu": "4.32.0",
|
1416 |
+
"@rollup/rollup-linux-s390x-gnu": "4.32.0",
|
1417 |
+
"@rollup/rollup-linux-x64-gnu": "4.32.0",
|
1418 |
+
"@rollup/rollup-linux-x64-musl": "4.32.0",
|
1419 |
+
"@rollup/rollup-win32-arm64-msvc": "4.32.0",
|
1420 |
+
"@rollup/rollup-win32-ia32-msvc": "4.32.0",
|
1421 |
+
"@rollup/rollup-win32-x64-msvc": "4.32.0",
|
1422 |
+
"fsevents": "~2.3.2"
|
1423 |
+
}
|
1424 |
+
},
|
1425 |
+
"node_modules/safe-buffer": {
|
1426 |
+
"version": "5.2.1",
|
1427 |
+
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
|
1428 |
+
"integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
|
1429 |
+
"funding": [
|
1430 |
+
{
|
1431 |
+
"type": "github",
|
1432 |
+
"url": "https://github.com/sponsors/feross"
|
1433 |
+
},
|
1434 |
+
{
|
1435 |
+
"type": "patreon",
|
1436 |
+
"url": "https://www.patreon.com/feross"
|
1437 |
+
},
|
1438 |
+
{
|
1439 |
+
"type": "consulting",
|
1440 |
+
"url": "https://feross.org/support"
|
1441 |
+
}
|
1442 |
+
],
|
1443 |
+
"license": "MIT"
|
1444 |
+
},
|
1445 |
+
"node_modules/shebang-command": {
|
1446 |
+
"version": "2.0.0",
|
1447 |
+
"resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
|
1448 |
+
"integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
|
1449 |
+
"license": "MIT",
|
1450 |
+
"dependencies": {
|
1451 |
+
"shebang-regex": "^3.0.0"
|
1452 |
+
},
|
1453 |
+
"engines": {
|
1454 |
+
"node": ">=8"
|
1455 |
+
}
|
1456 |
+
},
|
1457 |
+
"node_modules/shebang-regex": {
|
1458 |
+
"version": "3.0.0",
|
1459 |
+
"resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
|
1460 |
+
"integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
|
1461 |
+
"license": "MIT",
|
1462 |
+
"engines": {
|
1463 |
+
"node": ">=8"
|
1464 |
+
}
|
1465 |
+
},
|
1466 |
+
"node_modules/side-channel": {
|
1467 |
+
"version": "1.1.0",
|
1468 |
+
"resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz",
|
1469 |
+
"integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
|
1470 |
+
"license": "MIT",
|
1471 |
+
"dependencies": {
|
1472 |
+
"es-errors": "^1.3.0",
|
1473 |
+
"object-inspect": "^1.13.3",
|
1474 |
+
"side-channel-list": "^1.0.0",
|
1475 |
+
"side-channel-map": "^1.0.1",
|
1476 |
+
"side-channel-weakmap": "^1.0.2"
|
1477 |
+
},
|
1478 |
+
"engines": {
|
1479 |
+
"node": ">= 0.4"
|
1480 |
+
},
|
1481 |
+
"funding": {
|
1482 |
+
"url": "https://github.com/sponsors/ljharb"
|
1483 |
+
}
|
1484 |
+
},
|
1485 |
+
"node_modules/side-channel-list": {
|
1486 |
+
"version": "1.0.0",
|
1487 |
+
"resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz",
|
1488 |
+
"integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==",
|
1489 |
+
"license": "MIT",
|
1490 |
+
"dependencies": {
|
1491 |
+
"es-errors": "^1.3.0",
|
1492 |
+
"object-inspect": "^1.13.3"
|
1493 |
+
},
|
1494 |
+
"engines": {
|
1495 |
+
"node": ">= 0.4"
|
1496 |
+
},
|
1497 |
+
"funding": {
|
1498 |
+
"url": "https://github.com/sponsors/ljharb"
|
1499 |
+
}
|
1500 |
+
},
|
1501 |
+
"node_modules/side-channel-map": {
|
1502 |
+
"version": "1.0.1",
|
1503 |
+
"resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
|
1504 |
+
"integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
|
1505 |
+
"license": "MIT",
|
1506 |
+
"dependencies": {
|
1507 |
+
"call-bound": "^1.0.2",
|
1508 |
+
"es-errors": "^1.3.0",
|
1509 |
+
"get-intrinsic": "^1.2.5",
|
1510 |
+
"object-inspect": "^1.13.3"
|
1511 |
+
},
|
1512 |
+
"engines": {
|
1513 |
+
"node": ">= 0.4"
|
1514 |
+
},
|
1515 |
+
"funding": {
|
1516 |
+
"url": "https://github.com/sponsors/ljharb"
|
1517 |
+
}
|
1518 |
+
},
|
1519 |
+
"node_modules/side-channel-weakmap": {
|
1520 |
+
"version": "1.0.2",
|
1521 |
+
"resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
|
1522 |
+
"integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
|
1523 |
+
"license": "MIT",
|
1524 |
+
"dependencies": {
|
1525 |
+
"call-bound": "^1.0.2",
|
1526 |
+
"es-errors": "^1.3.0",
|
1527 |
+
"get-intrinsic": "^1.2.5",
|
1528 |
+
"object-inspect": "^1.13.3",
|
1529 |
+
"side-channel-map": "^1.0.1"
|
1530 |
+
},
|
1531 |
+
"engines": {
|
1532 |
+
"node": ">= 0.4"
|
1533 |
+
},
|
1534 |
+
"funding": {
|
1535 |
+
"url": "https://github.com/sponsors/ljharb"
|
1536 |
+
}
|
1537 |
+
},
|
1538 |
+
"node_modules/signal-exit": {
|
1539 |
+
"version": "3.0.7",
|
1540 |
+
"resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz",
|
1541 |
+
"integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==",
|
1542 |
+
"license": "ISC"
|
1543 |
+
},
|
1544 |
+
"node_modules/source-map-js": {
|
1545 |
+
"version": "1.2.1",
|
1546 |
+
"resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
|
1547 |
+
"integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
|
1548 |
+
"dev": true,
|
1549 |
+
"license": "BSD-3-Clause",
|
1550 |
+
"engines": {
|
1551 |
+
"node": ">=0.10.0"
|
1552 |
+
}
|
1553 |
+
},
|
1554 |
+
"node_modules/string_decoder": {
|
1555 |
+
"version": "1.3.0",
|
1556 |
+
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
|
1557 |
+
"integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
|
1558 |
+
"license": "MIT",
|
1559 |
+
"dependencies": {
|
1560 |
+
"safe-buffer": "~5.2.0"
|
1561 |
+
}
|
1562 |
+
},
|
1563 |
+
"node_modules/strip-final-newline": {
|
1564 |
+
"version": "2.0.0",
|
1565 |
+
"resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz",
|
1566 |
+
"integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==",
|
1567 |
+
"license": "MIT",
|
1568 |
+
"engines": {
|
1569 |
+
"node": ">=6"
|
1570 |
+
}
|
1571 |
+
},
|
1572 |
+
"node_modules/tr46": {
|
1573 |
+
"version": "0.0.3",
|
1574 |
+
"resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz",
|
1575 |
+
"integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==",
|
1576 |
+
"license": "MIT"
|
1577 |
+
},
|
1578 |
+
"node_modules/url-join": {
|
1579 |
+
"version": "4.0.1",
|
1580 |
+
"resolved": "https://registry.npmjs.org/url-join/-/url-join-4.0.1.tgz",
|
1581 |
+
"integrity": "sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==",
|
1582 |
+
"license": "MIT"
|
1583 |
+
},
|
1584 |
+
"node_modules/vite": {
|
1585 |
+
"version": "6.0.11",
|
1586 |
+
"resolved": "https://registry.npmjs.org/vite/-/vite-6.0.11.tgz",
|
1587 |
+
"integrity": "sha512-4VL9mQPKoHy4+FE0NnRE/kbY51TOfaknxAjt3fJbGJxhIpBZiqVzlZDEesWWsuREXHwNdAoOFZ9MkPEVXczHwg==",
|
1588 |
+
"dev": true,
|
1589 |
+
"license": "MIT",
|
1590 |
+
"dependencies": {
|
1591 |
+
"esbuild": "^0.24.2",
|
1592 |
+
"postcss": "^8.4.49",
|
1593 |
+
"rollup": "^4.23.0"
|
1594 |
+
},
|
1595 |
+
"bin": {
|
1596 |
+
"vite": "bin/vite.js"
|
1597 |
+
},
|
1598 |
+
"engines": {
|
1599 |
+
"node": "^18.0.0 || ^20.0.0 || >=22.0.0"
|
1600 |
+
},
|
1601 |
+
"funding": {
|
1602 |
+
"url": "https://github.com/vitejs/vite?sponsor=1"
|
1603 |
+
},
|
1604 |
+
"optionalDependencies": {
|
1605 |
+
"fsevents": "~2.3.3"
|
1606 |
+
},
|
1607 |
+
"peerDependencies": {
|
1608 |
+
"@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0",
|
1609 |
+
"jiti": ">=1.21.0",
|
1610 |
+
"less": "*",
|
1611 |
+
"lightningcss": "^1.21.0",
|
1612 |
+
"sass": "*",
|
1613 |
+
"sass-embedded": "*",
|
1614 |
+
"stylus": "*",
|
1615 |
+
"sugarss": "*",
|
1616 |
+
"terser": "^5.16.0",
|
1617 |
+
"tsx": "^4.8.1",
|
1618 |
+
"yaml": "^2.4.2"
|
1619 |
+
},
|
1620 |
+
"peerDependenciesMeta": {
|
1621 |
+
"@types/node": {
|
1622 |
+
"optional": true
|
1623 |
+
},
|
1624 |
+
"jiti": {
|
1625 |
+
"optional": true
|
1626 |
+
},
|
1627 |
+
"less": {
|
1628 |
+
"optional": true
|
1629 |
+
},
|
1630 |
+
"lightningcss": {
|
1631 |
+
"optional": true
|
1632 |
+
},
|
1633 |
+
"sass": {
|
1634 |
+
"optional": true
|
1635 |
+
},
|
1636 |
+
"sass-embedded": {
|
1637 |
+
"optional": true
|
1638 |
+
},
|
1639 |
+
"stylus": {
|
1640 |
+
"optional": true
|
1641 |
+
},
|
1642 |
+
"sugarss": {
|
1643 |
+
"optional": true
|
1644 |
+
},
|
1645 |
+
"terser": {
|
1646 |
+
"optional": true
|
1647 |
+
},
|
1648 |
+
"tsx": {
|
1649 |
+
"optional": true
|
1650 |
+
},
|
1651 |
+
"yaml": {
|
1652 |
+
"optional": true
|
1653 |
+
}
|
1654 |
+
}
|
1655 |
+
},
|
1656 |
+
"node_modules/webidl-conversions": {
|
1657 |
+
"version": "3.0.1",
|
1658 |
+
"resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
|
1659 |
+
"integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==",
|
1660 |
+
"license": "BSD-2-Clause"
|
1661 |
+
},
|
1662 |
+
"node_modules/whatwg-url": {
|
1663 |
+
"version": "5.0.0",
|
1664 |
+
"resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz",
|
1665 |
+
"integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==",
|
1666 |
+
"license": "MIT",
|
1667 |
+
"dependencies": {
|
1668 |
+
"tr46": "~0.0.3",
|
1669 |
+
"webidl-conversions": "^3.0.0"
|
1670 |
+
}
|
1671 |
+
},
|
1672 |
+
"node_modules/which": {
|
1673 |
+
"version": "2.0.2",
|
1674 |
+
"resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
|
1675 |
+
"integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
|
1676 |
+
"license": "ISC",
|
1677 |
+
"dependencies": {
|
1678 |
+
"isexe": "^2.0.0"
|
1679 |
+
},
|
1680 |
+
"bin": {
|
1681 |
+
"node-which": "bin/node-which"
|
1682 |
+
},
|
1683 |
+
"engines": {
|
1684 |
+
"node": ">= 8"
|
1685 |
+
}
|
1686 |
+
}
|
1687 |
+
}
|
1688 |
+
}
|
package.json
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"name": "shyguys-wingman-js",
|
3 |
+
"version": "1.0.0",
|
4 |
+
"description": "ShyguysWingmanJS project",
|
5 |
+
"main": "src/index.js",
|
6 |
+
"scripts": {
|
7 |
+
"dev": "vite",
|
8 |
+
"build": "vite build",
|
9 |
+
"preview": "vite preview"
|
10 |
+
},
|
11 |
+
"dependencies": {
|
12 |
+
"elevenlabs": "^1.50.4"
|
13 |
+
},
|
14 |
+
"devDependencies": {
|
15 |
+
"vite": "^6.0.11"
|
16 |
+
}
|
17 |
+
}
|
vite.config.js
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
export default {
|
2 |
+
server: {
|
3 |
+
open: true,
|
4 |
+
},
|
5 |
+
};
|