hightjs 0.4.0 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +48 -116
- package/dist/bin/hightjs.js +51 -23
- package/dist/builder.js +139 -4
- package/dist/client/DefaultNotFound.d.ts +1 -1
- package/dist/client/DefaultNotFound.js +72 -46
- package/dist/client/client.d.ts +3 -0
- package/dist/{client.js → client/client.js} +4 -4
- package/dist/client/entry.client.js +39 -29
- package/dist/global/global.d.ts +117 -0
- package/dist/{auth/types.js → global/global.js} +0 -1
- package/dist/helpers.js +80 -2
- package/dist/hotReload.js +2 -2
- package/dist/index.js +16 -16
- package/dist/loaders.d.ts +1 -0
- package/dist/loaders.js +46 -0
- package/dist/renderer.js +158 -4
- package/dist/types.d.ts +44 -0
- package/package.json +36 -31
- package/.idea/HightJS.iml +0 -9
- package/.idea/copilot.data.migration.agent.xml +0 -6
- package/.idea/copilot.data.migration.ask.xml +0 -6
- package/.idea/copilot.data.migration.ask2agent.xml +0 -6
- package/.idea/copilot.data.migration.edit.xml +0 -6
- package/.idea/copilotDiffState.xml +0 -67
- package/.idea/inspectionProfiles/Project_Default.xml +0 -13
- package/.idea/libraries/test_package.xml +0 -9
- package/.idea/libraries/ts_commonjs_default_export.xml +0 -9
- package/.idea/misc.xml +0 -7
- package/.idea/modules.xml +0 -8
- package/.idea/vcs.xml +0 -6
- package/dist/auth/client.d.ts +0 -24
- package/dist/auth/client.js +0 -146
- package/dist/auth/components.d.ts +0 -29
- package/dist/auth/components.js +0 -100
- package/dist/auth/core.d.ts +0 -55
- package/dist/auth/core.js +0 -189
- package/dist/auth/index.d.ts +0 -7
- package/dist/auth/index.js +0 -45
- package/dist/auth/jwt.d.ts +0 -41
- package/dist/auth/jwt.js +0 -185
- package/dist/auth/providers/credentials.d.ts +0 -60
- package/dist/auth/providers/credentials.js +0 -97
- package/dist/auth/providers/discord.d.ts +0 -63
- package/dist/auth/providers/discord.js +0 -190
- package/dist/auth/providers/google.d.ts +0 -63
- package/dist/auth/providers/google.js +0 -186
- package/dist/auth/providers/index.d.ts +0 -2
- package/dist/auth/providers/index.js +0 -35
- package/dist/auth/providers.d.ts +0 -3
- package/dist/auth/providers.js +0 -26
- package/dist/auth/react/index.d.ts +0 -6
- package/dist/auth/react/index.js +0 -48
- package/dist/auth/react.d.ts +0 -22
- package/dist/auth/react.js +0 -199
- package/dist/auth/routes.d.ts +0 -16
- package/dist/auth/routes.js +0 -152
- package/dist/auth/types.d.ts +0 -76
- package/dist/client.d.ts +0 -3
- package/docs/README.md +0 -58
- package/docs/arquivos-especiais.md +0 -10
- package/docs/autenticacao.md +0 -212
- package/docs/checklist.md +0 -9
- package/docs/cli.md +0 -72
- package/docs/config.md +0 -216
- package/docs/estrutura.md +0 -20
- package/docs/faq.md +0 -10
- package/docs/hot-reload.md +0 -5
- package/docs/integracoes.md +0 -240
- package/docs/middlewares.md +0 -73
- package/docs/rotas-backend.md +0 -45
- package/docs/rotas-frontend.md +0 -66
- package/docs/seguranca.md +0 -8
- package/docs/websocket.md +0 -45
- package/example/certs/cert.pem +0 -20
- package/example/certs/key.pem +0 -27
- package/example/hightjs.config.ts +0 -87
- package/example/package-lock.json +0 -1174
- package/example/package.json +0 -26
- package/example/postcss.config.js +0 -8
- package/example/src/backend/auth.ts +0 -42
- package/example/src/backend/routes/auth.ts +0 -3
- package/example/src/backend/routes/version.ts +0 -13
- package/example/src/web/components/Home.tsx +0 -140
- package/example/src/web/components/LoginPage.tsx +0 -149
- package/example/src/web/globals.css +0 -5
- package/example/src/web/layout.tsx +0 -100
- package/example/src/web/routes/index.tsx +0 -13
- package/example/src/web/routes/login.tsx +0 -30
- package/example/tailwind.config.js +0 -12
- package/example/tsconfig.json +0 -15
- package/src/adapters/express.ts +0 -87
- package/src/adapters/factory.ts +0 -112
- package/src/adapters/fastify.ts +0 -104
- package/src/adapters/native.ts +0 -234
- package/src/api/console.ts +0 -305
- package/src/api/http.ts +0 -535
- package/src/auth/client.ts +0 -171
- package/src/auth/components.tsx +0 -125
- package/src/auth/core.ts +0 -215
- package/src/auth/index.ts +0 -25
- package/src/auth/jwt.ts +0 -210
- package/src/auth/providers/credentials.ts +0 -139
- package/src/auth/providers/discord.ts +0 -239
- package/src/auth/providers/google.ts +0 -234
- package/src/auth/providers/index.ts +0 -20
- package/src/auth/providers.ts +0 -20
- package/src/auth/react/index.ts +0 -25
- package/src/auth/react.tsx +0 -234
- package/src/auth/routes.ts +0 -183
- package/src/auth/types.ts +0 -108
- package/src/bin/hightjs.js +0 -222
- package/src/builder.js +0 -472
- package/src/client/DefaultNotFound.tsx +0 -84
- package/src/client/clientRouter.ts +0 -153
- package/src/client/entry.client.tsx +0 -511
- package/src/client.ts +0 -24
- package/src/components/Link.tsx +0 -38
- package/src/helpers.ts +0 -542
- package/src/hotReload.ts +0 -569
- package/src/index.ts +0 -555
- package/src/renderer.tsx +0 -263
- package/src/router.ts +0 -730
- package/src/types/framework.ts +0 -58
- package/src/types.ts +0 -207
- package/tsconfig.json +0 -17
|
@@ -1,1174 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "example",
|
|
3
|
-
"version": "1.0.0",
|
|
4
|
-
"lockfileVersion": 3,
|
|
5
|
-
"requires": true,
|
|
6
|
-
"packages": {
|
|
7
|
-
"": {
|
|
8
|
-
"name": "example",
|
|
9
|
-
"version": "1.0.0",
|
|
10
|
-
"license": "ISC",
|
|
11
|
-
"dependencies": {
|
|
12
|
-
"@tailwindcss/postcss": "^4.1.16",
|
|
13
|
-
"autoprefixer": "^10.4.21",
|
|
14
|
-
"hightjs": "../",
|
|
15
|
-
"postcss": "^8.5.6",
|
|
16
|
-
"react": "^19.2.0",
|
|
17
|
-
"react-dom": "^19.2.0",
|
|
18
|
-
"tailwindcss": "^4.1.16",
|
|
19
|
-
"ts-node": "^10.9.2"
|
|
20
|
-
},
|
|
21
|
-
"devDependencies": {
|
|
22
|
-
"@types/react": "^19.2.2",
|
|
23
|
-
"typescript": "^5.9.3"
|
|
24
|
-
}
|
|
25
|
-
},
|
|
26
|
-
"..": {
|
|
27
|
-
"name": "hightjs",
|
|
28
|
-
"version": "0.3.5",
|
|
29
|
-
"license": "Apache-2.0",
|
|
30
|
-
"dependencies": {
|
|
31
|
-
"@fastify/cookie": "^11.0.2",
|
|
32
|
-
"@fastify/formbody": "^8.0.2",
|
|
33
|
-
"boxen": "^8.0.1",
|
|
34
|
-
"chokidar": "^3.5.3",
|
|
35
|
-
"commander": "^14.0.1",
|
|
36
|
-
"cookie-parser": "^1.4.7",
|
|
37
|
-
"esbuild": "^0.25.10",
|
|
38
|
-
"express": "^4.0.0",
|
|
39
|
-
"fastify": "^5.6.1",
|
|
40
|
-
"framer-motion": "^12.23.22",
|
|
41
|
-
"ws": "^8.18.1"
|
|
42
|
-
},
|
|
43
|
-
"bin": {
|
|
44
|
-
"hight": "dist/bin/hightjs.js"
|
|
45
|
-
},
|
|
46
|
-
"devDependencies": {
|
|
47
|
-
"@types/express": "^4.17.21",
|
|
48
|
-
"@types/node": "^20.11.24",
|
|
49
|
-
"@types/react": "^19.2.0",
|
|
50
|
-
"@types/react-dom": "^19.2.0",
|
|
51
|
-
"@types/ws": "^8.18.1",
|
|
52
|
-
"ts-loader": "^9.5.4",
|
|
53
|
-
"ts-node": "^10.9.2",
|
|
54
|
-
"typescript": "^5.9.3"
|
|
55
|
-
}
|
|
56
|
-
},
|
|
57
|
-
"node_modules/@alloc/quick-lru": {
|
|
58
|
-
"version": "5.2.0",
|
|
59
|
-
"resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz",
|
|
60
|
-
"integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==",
|
|
61
|
-
"license": "MIT",
|
|
62
|
-
"engines": {
|
|
63
|
-
"node": ">=10"
|
|
64
|
-
},
|
|
65
|
-
"funding": {
|
|
66
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
67
|
-
}
|
|
68
|
-
},
|
|
69
|
-
"node_modules/@cspotcode/source-map-support": {
|
|
70
|
-
"version": "0.8.1",
|
|
71
|
-
"resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz",
|
|
72
|
-
"integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==",
|
|
73
|
-
"license": "MIT",
|
|
74
|
-
"dependencies": {
|
|
75
|
-
"@jridgewell/trace-mapping": "0.3.9"
|
|
76
|
-
},
|
|
77
|
-
"engines": {
|
|
78
|
-
"node": ">=12"
|
|
79
|
-
}
|
|
80
|
-
},
|
|
81
|
-
"node_modules/@jridgewell/gen-mapping": {
|
|
82
|
-
"version": "0.3.13",
|
|
83
|
-
"resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
|
|
84
|
-
"integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
|
|
85
|
-
"license": "MIT",
|
|
86
|
-
"dependencies": {
|
|
87
|
-
"@jridgewell/sourcemap-codec": "^1.5.0",
|
|
88
|
-
"@jridgewell/trace-mapping": "^0.3.24"
|
|
89
|
-
}
|
|
90
|
-
},
|
|
91
|
-
"node_modules/@jridgewell/gen-mapping/node_modules/@jridgewell/trace-mapping": {
|
|
92
|
-
"version": "0.3.31",
|
|
93
|
-
"resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
|
|
94
|
-
"integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
|
|
95
|
-
"license": "MIT",
|
|
96
|
-
"dependencies": {
|
|
97
|
-
"@jridgewell/resolve-uri": "^3.1.0",
|
|
98
|
-
"@jridgewell/sourcemap-codec": "^1.4.14"
|
|
99
|
-
}
|
|
100
|
-
},
|
|
101
|
-
"node_modules/@jridgewell/remapping": {
|
|
102
|
-
"version": "2.3.5",
|
|
103
|
-
"resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz",
|
|
104
|
-
"integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==",
|
|
105
|
-
"license": "MIT",
|
|
106
|
-
"dependencies": {
|
|
107
|
-
"@jridgewell/gen-mapping": "^0.3.5",
|
|
108
|
-
"@jridgewell/trace-mapping": "^0.3.24"
|
|
109
|
-
}
|
|
110
|
-
},
|
|
111
|
-
"node_modules/@jridgewell/remapping/node_modules/@jridgewell/trace-mapping": {
|
|
112
|
-
"version": "0.3.31",
|
|
113
|
-
"resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
|
|
114
|
-
"integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
|
|
115
|
-
"license": "MIT",
|
|
116
|
-
"dependencies": {
|
|
117
|
-
"@jridgewell/resolve-uri": "^3.1.0",
|
|
118
|
-
"@jridgewell/sourcemap-codec": "^1.4.14"
|
|
119
|
-
}
|
|
120
|
-
},
|
|
121
|
-
"node_modules/@jridgewell/resolve-uri": {
|
|
122
|
-
"version": "3.1.2",
|
|
123
|
-
"resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
|
|
124
|
-
"integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
|
|
125
|
-
"license": "MIT",
|
|
126
|
-
"engines": {
|
|
127
|
-
"node": ">=6.0.0"
|
|
128
|
-
}
|
|
129
|
-
},
|
|
130
|
-
"node_modules/@jridgewell/sourcemap-codec": {
|
|
131
|
-
"version": "1.5.5",
|
|
132
|
-
"resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
|
|
133
|
-
"integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
|
|
134
|
-
"license": "MIT"
|
|
135
|
-
},
|
|
136
|
-
"node_modules/@jridgewell/trace-mapping": {
|
|
137
|
-
"version": "0.3.9",
|
|
138
|
-
"resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz",
|
|
139
|
-
"integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==",
|
|
140
|
-
"license": "MIT",
|
|
141
|
-
"dependencies": {
|
|
142
|
-
"@jridgewell/resolve-uri": "^3.0.3",
|
|
143
|
-
"@jridgewell/sourcemap-codec": "^1.4.10"
|
|
144
|
-
}
|
|
145
|
-
},
|
|
146
|
-
"node_modules/@tailwindcss/node": {
|
|
147
|
-
"version": "4.1.16",
|
|
148
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.1.16.tgz",
|
|
149
|
-
"integrity": "sha512-BX5iaSsloNuvKNHRN3k2RcCuTEgASTo77mofW0vmeHkfrDWaoFAFvNHpEgtu0eqyypcyiBkDWzSMxJhp3AUVcw==",
|
|
150
|
-
"license": "MIT",
|
|
151
|
-
"dependencies": {
|
|
152
|
-
"@jridgewell/remapping": "^2.3.4",
|
|
153
|
-
"enhanced-resolve": "^5.18.3",
|
|
154
|
-
"jiti": "^2.6.1",
|
|
155
|
-
"lightningcss": "1.30.2",
|
|
156
|
-
"magic-string": "^0.30.19",
|
|
157
|
-
"source-map-js": "^1.2.1",
|
|
158
|
-
"tailwindcss": "4.1.16"
|
|
159
|
-
}
|
|
160
|
-
},
|
|
161
|
-
"node_modules/@tailwindcss/oxide": {
|
|
162
|
-
"version": "4.1.16",
|
|
163
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.1.16.tgz",
|
|
164
|
-
"integrity": "sha512-2OSv52FRuhdlgyOQqgtQHuCgXnS8nFSYRp2tJ+4WZXKgTxqPy7SMSls8c3mPT5pkZ17SBToGM5LHEJBO7miEdg==",
|
|
165
|
-
"license": "MIT",
|
|
166
|
-
"engines": {
|
|
167
|
-
"node": ">= 10"
|
|
168
|
-
},
|
|
169
|
-
"optionalDependencies": {
|
|
170
|
-
"@tailwindcss/oxide-android-arm64": "4.1.16",
|
|
171
|
-
"@tailwindcss/oxide-darwin-arm64": "4.1.16",
|
|
172
|
-
"@tailwindcss/oxide-darwin-x64": "4.1.16",
|
|
173
|
-
"@tailwindcss/oxide-freebsd-x64": "4.1.16",
|
|
174
|
-
"@tailwindcss/oxide-linux-arm-gnueabihf": "4.1.16",
|
|
175
|
-
"@tailwindcss/oxide-linux-arm64-gnu": "4.1.16",
|
|
176
|
-
"@tailwindcss/oxide-linux-arm64-musl": "4.1.16",
|
|
177
|
-
"@tailwindcss/oxide-linux-x64-gnu": "4.1.16",
|
|
178
|
-
"@tailwindcss/oxide-linux-x64-musl": "4.1.16",
|
|
179
|
-
"@tailwindcss/oxide-wasm32-wasi": "4.1.16",
|
|
180
|
-
"@tailwindcss/oxide-win32-arm64-msvc": "4.1.16",
|
|
181
|
-
"@tailwindcss/oxide-win32-x64-msvc": "4.1.16"
|
|
182
|
-
}
|
|
183
|
-
},
|
|
184
|
-
"node_modules/@tailwindcss/oxide-android-arm64": {
|
|
185
|
-
"version": "4.1.16",
|
|
186
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.1.16.tgz",
|
|
187
|
-
"integrity": "sha512-8+ctzkjHgwDJ5caq9IqRSgsP70xhdhJvm+oueS/yhD5ixLhqTw9fSL1OurzMUhBwE5zK26FXLCz2f/RtkISqHA==",
|
|
188
|
-
"cpu": [
|
|
189
|
-
"arm64"
|
|
190
|
-
],
|
|
191
|
-
"license": "MIT",
|
|
192
|
-
"optional": true,
|
|
193
|
-
"os": [
|
|
194
|
-
"android"
|
|
195
|
-
],
|
|
196
|
-
"engines": {
|
|
197
|
-
"node": ">= 10"
|
|
198
|
-
}
|
|
199
|
-
},
|
|
200
|
-
"node_modules/@tailwindcss/oxide-darwin-arm64": {
|
|
201
|
-
"version": "4.1.16",
|
|
202
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.1.16.tgz",
|
|
203
|
-
"integrity": "sha512-C3oZy5042v2FOALBZtY0JTDnGNdS6w7DxL/odvSny17ORUnaRKhyTse8xYi3yKGyfnTUOdavRCdmc8QqJYwFKA==",
|
|
204
|
-
"cpu": [
|
|
205
|
-
"arm64"
|
|
206
|
-
],
|
|
207
|
-
"license": "MIT",
|
|
208
|
-
"optional": true,
|
|
209
|
-
"os": [
|
|
210
|
-
"darwin"
|
|
211
|
-
],
|
|
212
|
-
"engines": {
|
|
213
|
-
"node": ">= 10"
|
|
214
|
-
}
|
|
215
|
-
},
|
|
216
|
-
"node_modules/@tailwindcss/oxide-darwin-x64": {
|
|
217
|
-
"version": "4.1.16",
|
|
218
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.1.16.tgz",
|
|
219
|
-
"integrity": "sha512-vjrl/1Ub9+JwU6BP0emgipGjowzYZMjbWCDqwA2Z4vCa+HBSpP4v6U2ddejcHsolsYxwL5r4bPNoamlV0xDdLg==",
|
|
220
|
-
"cpu": [
|
|
221
|
-
"x64"
|
|
222
|
-
],
|
|
223
|
-
"license": "MIT",
|
|
224
|
-
"optional": true,
|
|
225
|
-
"os": [
|
|
226
|
-
"darwin"
|
|
227
|
-
],
|
|
228
|
-
"engines": {
|
|
229
|
-
"node": ">= 10"
|
|
230
|
-
}
|
|
231
|
-
},
|
|
232
|
-
"node_modules/@tailwindcss/oxide-freebsd-x64": {
|
|
233
|
-
"version": "4.1.16",
|
|
234
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.1.16.tgz",
|
|
235
|
-
"integrity": "sha512-TSMpPYpQLm+aR1wW5rKuUuEruc/oOX3C7H0BTnPDn7W/eMw8W+MRMpiypKMkXZfwH8wqPIRKppuZoedTtNj2tg==",
|
|
236
|
-
"cpu": [
|
|
237
|
-
"x64"
|
|
238
|
-
],
|
|
239
|
-
"license": "MIT",
|
|
240
|
-
"optional": true,
|
|
241
|
-
"os": [
|
|
242
|
-
"freebsd"
|
|
243
|
-
],
|
|
244
|
-
"engines": {
|
|
245
|
-
"node": ">= 10"
|
|
246
|
-
}
|
|
247
|
-
},
|
|
248
|
-
"node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": {
|
|
249
|
-
"version": "4.1.16",
|
|
250
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.1.16.tgz",
|
|
251
|
-
"integrity": "sha512-p0GGfRg/w0sdsFKBjMYvvKIiKy/LNWLWgV/plR4lUgrsxFAoQBFrXkZ4C0w8IOXfslB9vHK/JGASWD2IefIpvw==",
|
|
252
|
-
"cpu": [
|
|
253
|
-
"arm"
|
|
254
|
-
],
|
|
255
|
-
"license": "MIT",
|
|
256
|
-
"optional": true,
|
|
257
|
-
"os": [
|
|
258
|
-
"linux"
|
|
259
|
-
],
|
|
260
|
-
"engines": {
|
|
261
|
-
"node": ">= 10"
|
|
262
|
-
}
|
|
263
|
-
},
|
|
264
|
-
"node_modules/@tailwindcss/oxide-linux-arm64-gnu": {
|
|
265
|
-
"version": "4.1.16",
|
|
266
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.1.16.tgz",
|
|
267
|
-
"integrity": "sha512-DoixyMmTNO19rwRPdqviTrG1rYzpxgyYJl8RgQvdAQUzxC1ToLRqtNJpU/ATURSKgIg6uerPw2feW0aS8SNr/w==",
|
|
268
|
-
"cpu": [
|
|
269
|
-
"arm64"
|
|
270
|
-
],
|
|
271
|
-
"license": "MIT",
|
|
272
|
-
"optional": true,
|
|
273
|
-
"os": [
|
|
274
|
-
"linux"
|
|
275
|
-
],
|
|
276
|
-
"engines": {
|
|
277
|
-
"node": ">= 10"
|
|
278
|
-
}
|
|
279
|
-
},
|
|
280
|
-
"node_modules/@tailwindcss/oxide-linux-arm64-musl": {
|
|
281
|
-
"version": "4.1.16",
|
|
282
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.1.16.tgz",
|
|
283
|
-
"integrity": "sha512-H81UXMa9hJhWhaAUca6bU2wm5RRFpuHImrwXBUvPbYb+3jo32I9VIwpOX6hms0fPmA6f2pGVlybO6qU8pF4fzQ==",
|
|
284
|
-
"cpu": [
|
|
285
|
-
"arm64"
|
|
286
|
-
],
|
|
287
|
-
"license": "MIT",
|
|
288
|
-
"optional": true,
|
|
289
|
-
"os": [
|
|
290
|
-
"linux"
|
|
291
|
-
],
|
|
292
|
-
"engines": {
|
|
293
|
-
"node": ">= 10"
|
|
294
|
-
}
|
|
295
|
-
},
|
|
296
|
-
"node_modules/@tailwindcss/oxide-linux-x64-gnu": {
|
|
297
|
-
"version": "4.1.16",
|
|
298
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.1.16.tgz",
|
|
299
|
-
"integrity": "sha512-ZGHQxDtFC2/ruo7t99Qo2TTIvOERULPl5l0K1g0oK6b5PGqjYMga+FcY1wIUnrUxY56h28FxybtDEla+ICOyew==",
|
|
300
|
-
"cpu": [
|
|
301
|
-
"x64"
|
|
302
|
-
],
|
|
303
|
-
"license": "MIT",
|
|
304
|
-
"optional": true,
|
|
305
|
-
"os": [
|
|
306
|
-
"linux"
|
|
307
|
-
],
|
|
308
|
-
"engines": {
|
|
309
|
-
"node": ">= 10"
|
|
310
|
-
}
|
|
311
|
-
},
|
|
312
|
-
"node_modules/@tailwindcss/oxide-linux-x64-musl": {
|
|
313
|
-
"version": "4.1.16",
|
|
314
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.1.16.tgz",
|
|
315
|
-
"integrity": "sha512-Oi1tAaa0rcKf1Og9MzKeINZzMLPbhxvm7rno5/zuP1WYmpiG0bEHq4AcRUiG2165/WUzvxkW4XDYCscZWbTLZw==",
|
|
316
|
-
"cpu": [
|
|
317
|
-
"x64"
|
|
318
|
-
],
|
|
319
|
-
"license": "MIT",
|
|
320
|
-
"optional": true,
|
|
321
|
-
"os": [
|
|
322
|
-
"linux"
|
|
323
|
-
],
|
|
324
|
-
"engines": {
|
|
325
|
-
"node": ">= 10"
|
|
326
|
-
}
|
|
327
|
-
},
|
|
328
|
-
"node_modules/@tailwindcss/oxide-wasm32-wasi": {
|
|
329
|
-
"version": "4.1.16",
|
|
330
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.1.16.tgz",
|
|
331
|
-
"integrity": "sha512-B01u/b8LteGRwucIBmCQ07FVXLzImWESAIMcUU6nvFt/tYsQ6IHz8DmZ5KtvmwxD+iTYBtM1xwoGXswnlu9v0Q==",
|
|
332
|
-
"bundleDependencies": [
|
|
333
|
-
"@napi-rs/wasm-runtime",
|
|
334
|
-
"@emnapi/core",
|
|
335
|
-
"@emnapi/runtime",
|
|
336
|
-
"@tybys/wasm-util",
|
|
337
|
-
"@emnapi/wasi-threads",
|
|
338
|
-
"tslib"
|
|
339
|
-
],
|
|
340
|
-
"cpu": [
|
|
341
|
-
"wasm32"
|
|
342
|
-
],
|
|
343
|
-
"license": "MIT",
|
|
344
|
-
"optional": true,
|
|
345
|
-
"dependencies": {
|
|
346
|
-
"@emnapi/core": "^1.5.0",
|
|
347
|
-
"@emnapi/runtime": "^1.5.0",
|
|
348
|
-
"@emnapi/wasi-threads": "^1.1.0",
|
|
349
|
-
"@napi-rs/wasm-runtime": "^1.0.7",
|
|
350
|
-
"@tybys/wasm-util": "^0.10.1",
|
|
351
|
-
"tslib": "^2.4.0"
|
|
352
|
-
},
|
|
353
|
-
"engines": {
|
|
354
|
-
"node": ">=14.0.0"
|
|
355
|
-
}
|
|
356
|
-
},
|
|
357
|
-
"node_modules/@tailwindcss/oxide-win32-arm64-msvc": {
|
|
358
|
-
"version": "4.1.16",
|
|
359
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.1.16.tgz",
|
|
360
|
-
"integrity": "sha512-zX+Q8sSkGj6HKRTMJXuPvOcP8XfYON24zJBRPlszcH1Np7xuHXhWn8qfFjIujVzvH3BHU+16jBXwgpl20i+v9A==",
|
|
361
|
-
"cpu": [
|
|
362
|
-
"arm64"
|
|
363
|
-
],
|
|
364
|
-
"license": "MIT",
|
|
365
|
-
"optional": true,
|
|
366
|
-
"os": [
|
|
367
|
-
"win32"
|
|
368
|
-
],
|
|
369
|
-
"engines": {
|
|
370
|
-
"node": ">= 10"
|
|
371
|
-
}
|
|
372
|
-
},
|
|
373
|
-
"node_modules/@tailwindcss/oxide-win32-x64-msvc": {
|
|
374
|
-
"version": "4.1.16",
|
|
375
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.1.16.tgz",
|
|
376
|
-
"integrity": "sha512-m5dDFJUEejbFqP+UXVstd4W/wnxA4F61q8SoL+mqTypId2T2ZpuxosNSgowiCnLp2+Z+rivdU0AqpfgiD7yCBg==",
|
|
377
|
-
"cpu": [
|
|
378
|
-
"x64"
|
|
379
|
-
],
|
|
380
|
-
"license": "MIT",
|
|
381
|
-
"optional": true,
|
|
382
|
-
"os": [
|
|
383
|
-
"win32"
|
|
384
|
-
],
|
|
385
|
-
"engines": {
|
|
386
|
-
"node": ">= 10"
|
|
387
|
-
}
|
|
388
|
-
},
|
|
389
|
-
"node_modules/@tailwindcss/postcss": {
|
|
390
|
-
"version": "4.1.16",
|
|
391
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/postcss/-/postcss-4.1.16.tgz",
|
|
392
|
-
"integrity": "sha512-Qn3SFGPXYQMKR/UtqS+dqvPrzEeBZHrFA92maT4zijCVggdsXnDBMsPFJo1eArX3J+O+Gi+8pV4PkqjLCNBk3A==",
|
|
393
|
-
"license": "MIT",
|
|
394
|
-
"dependencies": {
|
|
395
|
-
"@alloc/quick-lru": "^5.2.0",
|
|
396
|
-
"@tailwindcss/node": "4.1.16",
|
|
397
|
-
"@tailwindcss/oxide": "4.1.16",
|
|
398
|
-
"postcss": "^8.4.41",
|
|
399
|
-
"tailwindcss": "4.1.16"
|
|
400
|
-
}
|
|
401
|
-
},
|
|
402
|
-
"node_modules/@tsconfig/node10": {
|
|
403
|
-
"version": "1.0.11",
|
|
404
|
-
"resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.11.tgz",
|
|
405
|
-
"integrity": "sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==",
|
|
406
|
-
"license": "MIT"
|
|
407
|
-
},
|
|
408
|
-
"node_modules/@tsconfig/node12": {
|
|
409
|
-
"version": "1.0.11",
|
|
410
|
-
"resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz",
|
|
411
|
-
"integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==",
|
|
412
|
-
"license": "MIT"
|
|
413
|
-
},
|
|
414
|
-
"node_modules/@tsconfig/node14": {
|
|
415
|
-
"version": "1.0.3",
|
|
416
|
-
"resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz",
|
|
417
|
-
"integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==",
|
|
418
|
-
"license": "MIT"
|
|
419
|
-
},
|
|
420
|
-
"node_modules/@tsconfig/node16": {
|
|
421
|
-
"version": "1.0.4",
|
|
422
|
-
"resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz",
|
|
423
|
-
"integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==",
|
|
424
|
-
"license": "MIT"
|
|
425
|
-
},
|
|
426
|
-
"node_modules/@types/node": {
|
|
427
|
-
"version": "24.9.1",
|
|
428
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-24.9.1.tgz",
|
|
429
|
-
"integrity": "sha512-QoiaXANRkSXK6p0Duvt56W208du4P9Uye9hWLWgGMDTEoKPhuenzNcC4vGUmrNkiOKTlIrBoyNQYNpSwfEZXSg==",
|
|
430
|
-
"license": "MIT",
|
|
431
|
-
"peer": true,
|
|
432
|
-
"dependencies": {
|
|
433
|
-
"undici-types": "~7.16.0"
|
|
434
|
-
}
|
|
435
|
-
},
|
|
436
|
-
"node_modules/@types/react": {
|
|
437
|
-
"version": "19.2.2",
|
|
438
|
-
"resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.2.tgz",
|
|
439
|
-
"integrity": "sha512-6mDvHUFSjyT2B2yeNx2nUgMxh9LtOWvkhIU3uePn2I2oyNymUAX1NIsdgviM4CH+JSrp2D2hsMvJOkxY+0wNRA==",
|
|
440
|
-
"dev": true,
|
|
441
|
-
"license": "MIT",
|
|
442
|
-
"dependencies": {
|
|
443
|
-
"csstype": "^3.0.2"
|
|
444
|
-
}
|
|
445
|
-
},
|
|
446
|
-
"node_modules/acorn": {
|
|
447
|
-
"version": "8.15.0",
|
|
448
|
-
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz",
|
|
449
|
-
"integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==",
|
|
450
|
-
"license": "MIT",
|
|
451
|
-
"bin": {
|
|
452
|
-
"acorn": "bin/acorn"
|
|
453
|
-
},
|
|
454
|
-
"engines": {
|
|
455
|
-
"node": ">=0.4.0"
|
|
456
|
-
}
|
|
457
|
-
},
|
|
458
|
-
"node_modules/acorn-walk": {
|
|
459
|
-
"version": "8.3.4",
|
|
460
|
-
"resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.4.tgz",
|
|
461
|
-
"integrity": "sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==",
|
|
462
|
-
"license": "MIT",
|
|
463
|
-
"dependencies": {
|
|
464
|
-
"acorn": "^8.11.0"
|
|
465
|
-
},
|
|
466
|
-
"engines": {
|
|
467
|
-
"node": ">=0.4.0"
|
|
468
|
-
}
|
|
469
|
-
},
|
|
470
|
-
"node_modules/arg": {
|
|
471
|
-
"version": "4.1.3",
|
|
472
|
-
"resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz",
|
|
473
|
-
"integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==",
|
|
474
|
-
"license": "MIT"
|
|
475
|
-
},
|
|
476
|
-
"node_modules/autoprefixer": {
|
|
477
|
-
"version": "10.4.21",
|
|
478
|
-
"resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.21.tgz",
|
|
479
|
-
"integrity": "sha512-O+A6LWV5LDHSJD3LjHYoNi4VLsj/Whi7k6zG12xTYaU4cQ8oxQGckXNX8cRHK5yOZ/ppVHe0ZBXGzSV9jXdVbQ==",
|
|
480
|
-
"funding": [
|
|
481
|
-
{
|
|
482
|
-
"type": "opencollective",
|
|
483
|
-
"url": "https://opencollective.com/postcss/"
|
|
484
|
-
},
|
|
485
|
-
{
|
|
486
|
-
"type": "tidelift",
|
|
487
|
-
"url": "https://tidelift.com/funding/github/npm/autoprefixer"
|
|
488
|
-
},
|
|
489
|
-
{
|
|
490
|
-
"type": "github",
|
|
491
|
-
"url": "https://github.com/sponsors/ai"
|
|
492
|
-
}
|
|
493
|
-
],
|
|
494
|
-
"license": "MIT",
|
|
495
|
-
"dependencies": {
|
|
496
|
-
"browserslist": "^4.24.4",
|
|
497
|
-
"caniuse-lite": "^1.0.30001702",
|
|
498
|
-
"fraction.js": "^4.3.7",
|
|
499
|
-
"normalize-range": "^0.1.2",
|
|
500
|
-
"picocolors": "^1.1.1",
|
|
501
|
-
"postcss-value-parser": "^4.2.0"
|
|
502
|
-
},
|
|
503
|
-
"bin": {
|
|
504
|
-
"autoprefixer": "bin/autoprefixer"
|
|
505
|
-
},
|
|
506
|
-
"engines": {
|
|
507
|
-
"node": "^10 || ^12 || >=14"
|
|
508
|
-
},
|
|
509
|
-
"peerDependencies": {
|
|
510
|
-
"postcss": "^8.1.0"
|
|
511
|
-
}
|
|
512
|
-
},
|
|
513
|
-
"node_modules/baseline-browser-mapping": {
|
|
514
|
-
"version": "2.8.20",
|
|
515
|
-
"resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.8.20.tgz",
|
|
516
|
-
"integrity": "sha512-JMWsdF+O8Orq3EMukbUN1QfbLK9mX2CkUmQBcW2T0s8OmdAUL5LLM/6wFwSrqXzlXB13yhyK9gTKS1rIizOduQ==",
|
|
517
|
-
"license": "Apache-2.0",
|
|
518
|
-
"bin": {
|
|
519
|
-
"baseline-browser-mapping": "dist/cli.js"
|
|
520
|
-
}
|
|
521
|
-
},
|
|
522
|
-
"node_modules/browserslist": {
|
|
523
|
-
"version": "4.27.0",
|
|
524
|
-
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.27.0.tgz",
|
|
525
|
-
"integrity": "sha512-AXVQwdhot1eqLihwasPElhX2tAZiBjWdJ9i/Zcj2S6QYIjkx62OKSfnobkriB81C3l4w0rVy3Nt4jaTBltYEpw==",
|
|
526
|
-
"funding": [
|
|
527
|
-
{
|
|
528
|
-
"type": "opencollective",
|
|
529
|
-
"url": "https://opencollective.com/browserslist"
|
|
530
|
-
},
|
|
531
|
-
{
|
|
532
|
-
"type": "tidelift",
|
|
533
|
-
"url": "https://tidelift.com/funding/github/npm/browserslist"
|
|
534
|
-
},
|
|
535
|
-
{
|
|
536
|
-
"type": "github",
|
|
537
|
-
"url": "https://github.com/sponsors/ai"
|
|
538
|
-
}
|
|
539
|
-
],
|
|
540
|
-
"license": "MIT",
|
|
541
|
-
"dependencies": {
|
|
542
|
-
"baseline-browser-mapping": "^2.8.19",
|
|
543
|
-
"caniuse-lite": "^1.0.30001751",
|
|
544
|
-
"electron-to-chromium": "^1.5.238",
|
|
545
|
-
"node-releases": "^2.0.26",
|
|
546
|
-
"update-browserslist-db": "^1.1.4"
|
|
547
|
-
},
|
|
548
|
-
"bin": {
|
|
549
|
-
"browserslist": "cli.js"
|
|
550
|
-
},
|
|
551
|
-
"engines": {
|
|
552
|
-
"node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
|
|
553
|
-
}
|
|
554
|
-
},
|
|
555
|
-
"node_modules/caniuse-lite": {
|
|
556
|
-
"version": "1.0.30001751",
|
|
557
|
-
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001751.tgz",
|
|
558
|
-
"integrity": "sha512-A0QJhug0Ly64Ii3eIqHu5X51ebln3k4yTUkY1j8drqpWHVreg/VLijN48cZ1bYPiqOQuqpkIKnzr/Ul8V+p6Cw==",
|
|
559
|
-
"funding": [
|
|
560
|
-
{
|
|
561
|
-
"type": "opencollective",
|
|
562
|
-
"url": "https://opencollective.com/browserslist"
|
|
563
|
-
},
|
|
564
|
-
{
|
|
565
|
-
"type": "tidelift",
|
|
566
|
-
"url": "https://tidelift.com/funding/github/npm/caniuse-lite"
|
|
567
|
-
},
|
|
568
|
-
{
|
|
569
|
-
"type": "github",
|
|
570
|
-
"url": "https://github.com/sponsors/ai"
|
|
571
|
-
}
|
|
572
|
-
],
|
|
573
|
-
"license": "CC-BY-4.0"
|
|
574
|
-
},
|
|
575
|
-
"node_modules/create-require": {
|
|
576
|
-
"version": "1.1.1",
|
|
577
|
-
"resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz",
|
|
578
|
-
"integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==",
|
|
579
|
-
"license": "MIT"
|
|
580
|
-
},
|
|
581
|
-
"node_modules/csstype": {
|
|
582
|
-
"version": "3.1.3",
|
|
583
|
-
"resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz",
|
|
584
|
-
"integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==",
|
|
585
|
-
"dev": true,
|
|
586
|
-
"license": "MIT"
|
|
587
|
-
},
|
|
588
|
-
"node_modules/detect-libc": {
|
|
589
|
-
"version": "2.1.2",
|
|
590
|
-
"resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
|
|
591
|
-
"integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
|
|
592
|
-
"license": "Apache-2.0",
|
|
593
|
-
"engines": {
|
|
594
|
-
"node": ">=8"
|
|
595
|
-
}
|
|
596
|
-
},
|
|
597
|
-
"node_modules/diff": {
|
|
598
|
-
"version": "4.0.2",
|
|
599
|
-
"resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz",
|
|
600
|
-
"integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==",
|
|
601
|
-
"license": "BSD-3-Clause",
|
|
602
|
-
"engines": {
|
|
603
|
-
"node": ">=0.3.1"
|
|
604
|
-
}
|
|
605
|
-
},
|
|
606
|
-
"node_modules/electron-to-chromium": {
|
|
607
|
-
"version": "1.5.240",
|
|
608
|
-
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.240.tgz",
|
|
609
|
-
"integrity": "sha512-OBwbZjWgrCOH+g6uJsA2/7Twpas2OlepS9uvByJjR2datRDuKGYeD+nP8lBBks2qnB7bGJNHDUx7c/YLaT3QMQ==",
|
|
610
|
-
"license": "ISC"
|
|
611
|
-
},
|
|
612
|
-
"node_modules/enhanced-resolve": {
|
|
613
|
-
"version": "5.18.3",
|
|
614
|
-
"resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.3.tgz",
|
|
615
|
-
"integrity": "sha512-d4lC8xfavMeBjzGr2vECC3fsGXziXZQyJxD868h2M/mBI3PwAuODxAkLkq5HYuvrPYcUtiLzsTo8U3PgX3Ocww==",
|
|
616
|
-
"license": "MIT",
|
|
617
|
-
"dependencies": {
|
|
618
|
-
"graceful-fs": "^4.2.4",
|
|
619
|
-
"tapable": "^2.2.0"
|
|
620
|
-
},
|
|
621
|
-
"engines": {
|
|
622
|
-
"node": ">=10.13.0"
|
|
623
|
-
}
|
|
624
|
-
},
|
|
625
|
-
"node_modules/escalade": {
|
|
626
|
-
"version": "3.2.0",
|
|
627
|
-
"resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
|
|
628
|
-
"integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
|
|
629
|
-
"license": "MIT",
|
|
630
|
-
"engines": {
|
|
631
|
-
"node": ">=6"
|
|
632
|
-
}
|
|
633
|
-
},
|
|
634
|
-
"node_modules/fraction.js": {
|
|
635
|
-
"version": "4.3.7",
|
|
636
|
-
"resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz",
|
|
637
|
-
"integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==",
|
|
638
|
-
"license": "MIT",
|
|
639
|
-
"engines": {
|
|
640
|
-
"node": "*"
|
|
641
|
-
},
|
|
642
|
-
"funding": {
|
|
643
|
-
"type": "patreon",
|
|
644
|
-
"url": "https://github.com/sponsors/rawify"
|
|
645
|
-
}
|
|
646
|
-
},
|
|
647
|
-
"node_modules/graceful-fs": {
|
|
648
|
-
"version": "4.2.11",
|
|
649
|
-
"resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
|
|
650
|
-
"integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
|
|
651
|
-
"license": "ISC"
|
|
652
|
-
},
|
|
653
|
-
"node_modules/hightjs": {
|
|
654
|
-
"resolved": "..",
|
|
655
|
-
"link": true
|
|
656
|
-
},
|
|
657
|
-
"node_modules/jiti": {
|
|
658
|
-
"version": "2.6.1",
|
|
659
|
-
"resolved": "https://registry.npmjs.org/jiti/-/jiti-2.6.1.tgz",
|
|
660
|
-
"integrity": "sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==",
|
|
661
|
-
"license": "MIT",
|
|
662
|
-
"bin": {
|
|
663
|
-
"jiti": "lib/jiti-cli.mjs"
|
|
664
|
-
}
|
|
665
|
-
},
|
|
666
|
-
"node_modules/lightningcss": {
|
|
667
|
-
"version": "1.30.2",
|
|
668
|
-
"resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.30.2.tgz",
|
|
669
|
-
"integrity": "sha512-utfs7Pr5uJyyvDETitgsaqSyjCb2qNRAtuqUeWIAKztsOYdcACf2KtARYXg2pSvhkt+9NfoaNY7fxjl6nuMjIQ==",
|
|
670
|
-
"license": "MPL-2.0",
|
|
671
|
-
"dependencies": {
|
|
672
|
-
"detect-libc": "^2.0.3"
|
|
673
|
-
},
|
|
674
|
-
"engines": {
|
|
675
|
-
"node": ">= 12.0.0"
|
|
676
|
-
},
|
|
677
|
-
"funding": {
|
|
678
|
-
"type": "opencollective",
|
|
679
|
-
"url": "https://opencollective.com/parcel"
|
|
680
|
-
},
|
|
681
|
-
"optionalDependencies": {
|
|
682
|
-
"lightningcss-android-arm64": "1.30.2",
|
|
683
|
-
"lightningcss-darwin-arm64": "1.30.2",
|
|
684
|
-
"lightningcss-darwin-x64": "1.30.2",
|
|
685
|
-
"lightningcss-freebsd-x64": "1.30.2",
|
|
686
|
-
"lightningcss-linux-arm-gnueabihf": "1.30.2",
|
|
687
|
-
"lightningcss-linux-arm64-gnu": "1.30.2",
|
|
688
|
-
"lightningcss-linux-arm64-musl": "1.30.2",
|
|
689
|
-
"lightningcss-linux-x64-gnu": "1.30.2",
|
|
690
|
-
"lightningcss-linux-x64-musl": "1.30.2",
|
|
691
|
-
"lightningcss-win32-arm64-msvc": "1.30.2",
|
|
692
|
-
"lightningcss-win32-x64-msvc": "1.30.2"
|
|
693
|
-
}
|
|
694
|
-
},
|
|
695
|
-
"node_modules/lightningcss-android-arm64": {
|
|
696
|
-
"version": "1.30.2",
|
|
697
|
-
"resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.30.2.tgz",
|
|
698
|
-
"integrity": "sha512-BH9sEdOCahSgmkVhBLeU7Hc9DWeZ1Eb6wNS6Da8igvUwAe0sqROHddIlvU06q3WyXVEOYDZ6ykBZQnjTbmo4+A==",
|
|
699
|
-
"cpu": [
|
|
700
|
-
"arm64"
|
|
701
|
-
],
|
|
702
|
-
"license": "MPL-2.0",
|
|
703
|
-
"optional": true,
|
|
704
|
-
"os": [
|
|
705
|
-
"android"
|
|
706
|
-
],
|
|
707
|
-
"engines": {
|
|
708
|
-
"node": ">= 12.0.0"
|
|
709
|
-
},
|
|
710
|
-
"funding": {
|
|
711
|
-
"type": "opencollective",
|
|
712
|
-
"url": "https://opencollective.com/parcel"
|
|
713
|
-
}
|
|
714
|
-
},
|
|
715
|
-
"node_modules/lightningcss-darwin-arm64": {
|
|
716
|
-
"version": "1.30.2",
|
|
717
|
-
"resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.30.2.tgz",
|
|
718
|
-
"integrity": "sha512-ylTcDJBN3Hp21TdhRT5zBOIi73P6/W0qwvlFEk22fkdXchtNTOU4Qc37SkzV+EKYxLouZ6M4LG9NfZ1qkhhBWA==",
|
|
719
|
-
"cpu": [
|
|
720
|
-
"arm64"
|
|
721
|
-
],
|
|
722
|
-
"license": "MPL-2.0",
|
|
723
|
-
"optional": true,
|
|
724
|
-
"os": [
|
|
725
|
-
"darwin"
|
|
726
|
-
],
|
|
727
|
-
"engines": {
|
|
728
|
-
"node": ">= 12.0.0"
|
|
729
|
-
},
|
|
730
|
-
"funding": {
|
|
731
|
-
"type": "opencollective",
|
|
732
|
-
"url": "https://opencollective.com/parcel"
|
|
733
|
-
}
|
|
734
|
-
},
|
|
735
|
-
"node_modules/lightningcss-darwin-x64": {
|
|
736
|
-
"version": "1.30.2",
|
|
737
|
-
"resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.30.2.tgz",
|
|
738
|
-
"integrity": "sha512-oBZgKchomuDYxr7ilwLcyms6BCyLn0z8J0+ZZmfpjwg9fRVZIR5/GMXd7r9RH94iDhld3UmSjBM6nXWM2TfZTQ==",
|
|
739
|
-
"cpu": [
|
|
740
|
-
"x64"
|
|
741
|
-
],
|
|
742
|
-
"license": "MPL-2.0",
|
|
743
|
-
"optional": true,
|
|
744
|
-
"os": [
|
|
745
|
-
"darwin"
|
|
746
|
-
],
|
|
747
|
-
"engines": {
|
|
748
|
-
"node": ">= 12.0.0"
|
|
749
|
-
},
|
|
750
|
-
"funding": {
|
|
751
|
-
"type": "opencollective",
|
|
752
|
-
"url": "https://opencollective.com/parcel"
|
|
753
|
-
}
|
|
754
|
-
},
|
|
755
|
-
"node_modules/lightningcss-freebsd-x64": {
|
|
756
|
-
"version": "1.30.2",
|
|
757
|
-
"resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.30.2.tgz",
|
|
758
|
-
"integrity": "sha512-c2bH6xTrf4BDpK8MoGG4Bd6zAMZDAXS569UxCAGcA7IKbHNMlhGQ89eRmvpIUGfKWNVdbhSbkQaWhEoMGmGslA==",
|
|
759
|
-
"cpu": [
|
|
760
|
-
"x64"
|
|
761
|
-
],
|
|
762
|
-
"license": "MPL-2.0",
|
|
763
|
-
"optional": true,
|
|
764
|
-
"os": [
|
|
765
|
-
"freebsd"
|
|
766
|
-
],
|
|
767
|
-
"engines": {
|
|
768
|
-
"node": ">= 12.0.0"
|
|
769
|
-
},
|
|
770
|
-
"funding": {
|
|
771
|
-
"type": "opencollective",
|
|
772
|
-
"url": "https://opencollective.com/parcel"
|
|
773
|
-
}
|
|
774
|
-
},
|
|
775
|
-
"node_modules/lightningcss-linux-arm-gnueabihf": {
|
|
776
|
-
"version": "1.30.2",
|
|
777
|
-
"resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.30.2.tgz",
|
|
778
|
-
"integrity": "sha512-eVdpxh4wYcm0PofJIZVuYuLiqBIakQ9uFZmipf6LF/HRj5Bgm0eb3qL/mr1smyXIS1twwOxNWndd8z0E374hiA==",
|
|
779
|
-
"cpu": [
|
|
780
|
-
"arm"
|
|
781
|
-
],
|
|
782
|
-
"license": "MPL-2.0",
|
|
783
|
-
"optional": true,
|
|
784
|
-
"os": [
|
|
785
|
-
"linux"
|
|
786
|
-
],
|
|
787
|
-
"engines": {
|
|
788
|
-
"node": ">= 12.0.0"
|
|
789
|
-
},
|
|
790
|
-
"funding": {
|
|
791
|
-
"type": "opencollective",
|
|
792
|
-
"url": "https://opencollective.com/parcel"
|
|
793
|
-
}
|
|
794
|
-
},
|
|
795
|
-
"node_modules/lightningcss-linux-arm64-gnu": {
|
|
796
|
-
"version": "1.30.2",
|
|
797
|
-
"resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.30.2.tgz",
|
|
798
|
-
"integrity": "sha512-UK65WJAbwIJbiBFXpxrbTNArtfuznvxAJw4Q2ZGlU8kPeDIWEX1dg3rn2veBVUylA2Ezg89ktszWbaQnxD/e3A==",
|
|
799
|
-
"cpu": [
|
|
800
|
-
"arm64"
|
|
801
|
-
],
|
|
802
|
-
"license": "MPL-2.0",
|
|
803
|
-
"optional": true,
|
|
804
|
-
"os": [
|
|
805
|
-
"linux"
|
|
806
|
-
],
|
|
807
|
-
"engines": {
|
|
808
|
-
"node": ">= 12.0.0"
|
|
809
|
-
},
|
|
810
|
-
"funding": {
|
|
811
|
-
"type": "opencollective",
|
|
812
|
-
"url": "https://opencollective.com/parcel"
|
|
813
|
-
}
|
|
814
|
-
},
|
|
815
|
-
"node_modules/lightningcss-linux-arm64-musl": {
|
|
816
|
-
"version": "1.30.2",
|
|
817
|
-
"resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.30.2.tgz",
|
|
818
|
-
"integrity": "sha512-5Vh9dGeblpTxWHpOx8iauV02popZDsCYMPIgiuw97OJ5uaDsL86cnqSFs5LZkG3ghHoX5isLgWzMs+eD1YzrnA==",
|
|
819
|
-
"cpu": [
|
|
820
|
-
"arm64"
|
|
821
|
-
],
|
|
822
|
-
"license": "MPL-2.0",
|
|
823
|
-
"optional": true,
|
|
824
|
-
"os": [
|
|
825
|
-
"linux"
|
|
826
|
-
],
|
|
827
|
-
"engines": {
|
|
828
|
-
"node": ">= 12.0.0"
|
|
829
|
-
},
|
|
830
|
-
"funding": {
|
|
831
|
-
"type": "opencollective",
|
|
832
|
-
"url": "https://opencollective.com/parcel"
|
|
833
|
-
}
|
|
834
|
-
},
|
|
835
|
-
"node_modules/lightningcss-linux-x64-gnu": {
|
|
836
|
-
"version": "1.30.2",
|
|
837
|
-
"resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.30.2.tgz",
|
|
838
|
-
"integrity": "sha512-Cfd46gdmj1vQ+lR6VRTTadNHu6ALuw2pKR9lYq4FnhvgBc4zWY1EtZcAc6EffShbb1MFrIPfLDXD6Xprbnni4w==",
|
|
839
|
-
"cpu": [
|
|
840
|
-
"x64"
|
|
841
|
-
],
|
|
842
|
-
"license": "MPL-2.0",
|
|
843
|
-
"optional": true,
|
|
844
|
-
"os": [
|
|
845
|
-
"linux"
|
|
846
|
-
],
|
|
847
|
-
"engines": {
|
|
848
|
-
"node": ">= 12.0.0"
|
|
849
|
-
},
|
|
850
|
-
"funding": {
|
|
851
|
-
"type": "opencollective",
|
|
852
|
-
"url": "https://opencollective.com/parcel"
|
|
853
|
-
}
|
|
854
|
-
},
|
|
855
|
-
"node_modules/lightningcss-linux-x64-musl": {
|
|
856
|
-
"version": "1.30.2",
|
|
857
|
-
"resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.30.2.tgz",
|
|
858
|
-
"integrity": "sha512-XJaLUUFXb6/QG2lGIW6aIk6jKdtjtcffUT0NKvIqhSBY3hh9Ch+1LCeH80dR9q9LBjG3ewbDjnumefsLsP6aiA==",
|
|
859
|
-
"cpu": [
|
|
860
|
-
"x64"
|
|
861
|
-
],
|
|
862
|
-
"license": "MPL-2.0",
|
|
863
|
-
"optional": true,
|
|
864
|
-
"os": [
|
|
865
|
-
"linux"
|
|
866
|
-
],
|
|
867
|
-
"engines": {
|
|
868
|
-
"node": ">= 12.0.0"
|
|
869
|
-
},
|
|
870
|
-
"funding": {
|
|
871
|
-
"type": "opencollective",
|
|
872
|
-
"url": "https://opencollective.com/parcel"
|
|
873
|
-
}
|
|
874
|
-
},
|
|
875
|
-
"node_modules/lightningcss-win32-arm64-msvc": {
|
|
876
|
-
"version": "1.30.2",
|
|
877
|
-
"resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.30.2.tgz",
|
|
878
|
-
"integrity": "sha512-FZn+vaj7zLv//D/192WFFVA0RgHawIcHqLX9xuWiQt7P0PtdFEVaxgF9rjM/IRYHQXNnk61/H/gb2Ei+kUQ4xQ==",
|
|
879
|
-
"cpu": [
|
|
880
|
-
"arm64"
|
|
881
|
-
],
|
|
882
|
-
"license": "MPL-2.0",
|
|
883
|
-
"optional": true,
|
|
884
|
-
"os": [
|
|
885
|
-
"win32"
|
|
886
|
-
],
|
|
887
|
-
"engines": {
|
|
888
|
-
"node": ">= 12.0.0"
|
|
889
|
-
},
|
|
890
|
-
"funding": {
|
|
891
|
-
"type": "opencollective",
|
|
892
|
-
"url": "https://opencollective.com/parcel"
|
|
893
|
-
}
|
|
894
|
-
},
|
|
895
|
-
"node_modules/lightningcss-win32-x64-msvc": {
|
|
896
|
-
"version": "1.30.2",
|
|
897
|
-
"resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.30.2.tgz",
|
|
898
|
-
"integrity": "sha512-5g1yc73p+iAkid5phb4oVFMB45417DkRevRbt/El/gKXJk4jid+vPFF/AXbxn05Aky8PapwzZrdJShv5C0avjw==",
|
|
899
|
-
"cpu": [
|
|
900
|
-
"x64"
|
|
901
|
-
],
|
|
902
|
-
"license": "MPL-2.0",
|
|
903
|
-
"optional": true,
|
|
904
|
-
"os": [
|
|
905
|
-
"win32"
|
|
906
|
-
],
|
|
907
|
-
"engines": {
|
|
908
|
-
"node": ">= 12.0.0"
|
|
909
|
-
},
|
|
910
|
-
"funding": {
|
|
911
|
-
"type": "opencollective",
|
|
912
|
-
"url": "https://opencollective.com/parcel"
|
|
913
|
-
}
|
|
914
|
-
},
|
|
915
|
-
"node_modules/magic-string": {
|
|
916
|
-
"version": "0.30.21",
|
|
917
|
-
"resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz",
|
|
918
|
-
"integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==",
|
|
919
|
-
"license": "MIT",
|
|
920
|
-
"dependencies": {
|
|
921
|
-
"@jridgewell/sourcemap-codec": "^1.5.5"
|
|
922
|
-
}
|
|
923
|
-
},
|
|
924
|
-
"node_modules/make-error": {
|
|
925
|
-
"version": "1.3.6",
|
|
926
|
-
"resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz",
|
|
927
|
-
"integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==",
|
|
928
|
-
"license": "ISC"
|
|
929
|
-
},
|
|
930
|
-
"node_modules/nanoid": {
|
|
931
|
-
"version": "3.3.11",
|
|
932
|
-
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
|
|
933
|
-
"integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
|
|
934
|
-
"funding": [
|
|
935
|
-
{
|
|
936
|
-
"type": "github",
|
|
937
|
-
"url": "https://github.com/sponsors/ai"
|
|
938
|
-
}
|
|
939
|
-
],
|
|
940
|
-
"license": "MIT",
|
|
941
|
-
"bin": {
|
|
942
|
-
"nanoid": "bin/nanoid.cjs"
|
|
943
|
-
},
|
|
944
|
-
"engines": {
|
|
945
|
-
"node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
|
|
946
|
-
}
|
|
947
|
-
},
|
|
948
|
-
"node_modules/node-releases": {
|
|
949
|
-
"version": "2.0.26",
|
|
950
|
-
"resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.26.tgz",
|
|
951
|
-
"integrity": "sha512-S2M9YimhSjBSvYnlr5/+umAnPHE++ODwt5e2Ij6FoX45HA/s4vHdkDx1eax2pAPeAOqu4s9b7ppahsyEFdVqQA==",
|
|
952
|
-
"license": "MIT"
|
|
953
|
-
},
|
|
954
|
-
"node_modules/normalize-range": {
|
|
955
|
-
"version": "0.1.2",
|
|
956
|
-
"resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz",
|
|
957
|
-
"integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==",
|
|
958
|
-
"license": "MIT",
|
|
959
|
-
"engines": {
|
|
960
|
-
"node": ">=0.10.0"
|
|
961
|
-
}
|
|
962
|
-
},
|
|
963
|
-
"node_modules/picocolors": {
|
|
964
|
-
"version": "1.1.1",
|
|
965
|
-
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
|
|
966
|
-
"integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
|
|
967
|
-
"license": "ISC"
|
|
968
|
-
},
|
|
969
|
-
"node_modules/postcss": {
|
|
970
|
-
"version": "8.5.6",
|
|
971
|
-
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz",
|
|
972
|
-
"integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==",
|
|
973
|
-
"funding": [
|
|
974
|
-
{
|
|
975
|
-
"type": "opencollective",
|
|
976
|
-
"url": "https://opencollective.com/postcss/"
|
|
977
|
-
},
|
|
978
|
-
{
|
|
979
|
-
"type": "tidelift",
|
|
980
|
-
"url": "https://tidelift.com/funding/github/npm/postcss"
|
|
981
|
-
},
|
|
982
|
-
{
|
|
983
|
-
"type": "github",
|
|
984
|
-
"url": "https://github.com/sponsors/ai"
|
|
985
|
-
}
|
|
986
|
-
],
|
|
987
|
-
"license": "MIT",
|
|
988
|
-
"dependencies": {
|
|
989
|
-
"nanoid": "^3.3.11",
|
|
990
|
-
"picocolors": "^1.1.1",
|
|
991
|
-
"source-map-js": "^1.2.1"
|
|
992
|
-
},
|
|
993
|
-
"engines": {
|
|
994
|
-
"node": "^10 || ^12 || >=14"
|
|
995
|
-
}
|
|
996
|
-
},
|
|
997
|
-
"node_modules/postcss-value-parser": {
|
|
998
|
-
"version": "4.2.0",
|
|
999
|
-
"resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz",
|
|
1000
|
-
"integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==",
|
|
1001
|
-
"license": "MIT"
|
|
1002
|
-
},
|
|
1003
|
-
"node_modules/react": {
|
|
1004
|
-
"version": "19.2.0",
|
|
1005
|
-
"resolved": "https://registry.npmjs.org/react/-/react-19.2.0.tgz",
|
|
1006
|
-
"integrity": "sha512-tmbWg6W31tQLeB5cdIBOicJDJRR2KzXsV7uSK9iNfLWQ5bIZfxuPEHp7M8wiHyHnn0DD1i7w3Zmin0FtkrwoCQ==",
|
|
1007
|
-
"license": "MIT",
|
|
1008
|
-
"engines": {
|
|
1009
|
-
"node": ">=0.10.0"
|
|
1010
|
-
}
|
|
1011
|
-
},
|
|
1012
|
-
"node_modules/react-dom": {
|
|
1013
|
-
"version": "19.2.0",
|
|
1014
|
-
"resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.0.tgz",
|
|
1015
|
-
"integrity": "sha512-UlbRu4cAiGaIewkPyiRGJk0imDN2T3JjieT6spoL2UeSf5od4n5LB/mQ4ejmxhCFT1tYe8IvaFulzynWovsEFQ==",
|
|
1016
|
-
"license": "MIT",
|
|
1017
|
-
"dependencies": {
|
|
1018
|
-
"scheduler": "^0.27.0"
|
|
1019
|
-
},
|
|
1020
|
-
"peerDependencies": {
|
|
1021
|
-
"react": "^19.2.0"
|
|
1022
|
-
}
|
|
1023
|
-
},
|
|
1024
|
-
"node_modules/scheduler": {
|
|
1025
|
-
"version": "0.27.0",
|
|
1026
|
-
"resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz",
|
|
1027
|
-
"integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==",
|
|
1028
|
-
"license": "MIT"
|
|
1029
|
-
},
|
|
1030
|
-
"node_modules/source-map-js": {
|
|
1031
|
-
"version": "1.2.1",
|
|
1032
|
-
"resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
|
|
1033
|
-
"integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
|
|
1034
|
-
"license": "BSD-3-Clause",
|
|
1035
|
-
"engines": {
|
|
1036
|
-
"node": ">=0.10.0"
|
|
1037
|
-
}
|
|
1038
|
-
},
|
|
1039
|
-
"node_modules/tailwindcss": {
|
|
1040
|
-
"version": "4.1.16",
|
|
1041
|
-
"resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.1.16.tgz",
|
|
1042
|
-
"integrity": "sha512-pONL5awpaQX4LN5eiv7moSiSPd/DLDzKVRJz8Q9PgzmAdd1R4307GQS2ZpfiN7ZmekdQrfhZZiSE5jkLR4WNaA==",
|
|
1043
|
-
"license": "MIT"
|
|
1044
|
-
},
|
|
1045
|
-
"node_modules/tapable": {
|
|
1046
|
-
"version": "2.3.0",
|
|
1047
|
-
"resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.0.tgz",
|
|
1048
|
-
"integrity": "sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==",
|
|
1049
|
-
"license": "MIT",
|
|
1050
|
-
"engines": {
|
|
1051
|
-
"node": ">=6"
|
|
1052
|
-
},
|
|
1053
|
-
"funding": {
|
|
1054
|
-
"type": "opencollective",
|
|
1055
|
-
"url": "https://opencollective.com/webpack"
|
|
1056
|
-
}
|
|
1057
|
-
},
|
|
1058
|
-
"node_modules/ts-node": {
|
|
1059
|
-
"version": "10.9.2",
|
|
1060
|
-
"resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.2.tgz",
|
|
1061
|
-
"integrity": "sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==",
|
|
1062
|
-
"license": "MIT",
|
|
1063
|
-
"dependencies": {
|
|
1064
|
-
"@cspotcode/source-map-support": "^0.8.0",
|
|
1065
|
-
"@tsconfig/node10": "^1.0.7",
|
|
1066
|
-
"@tsconfig/node12": "^1.0.7",
|
|
1067
|
-
"@tsconfig/node14": "^1.0.0",
|
|
1068
|
-
"@tsconfig/node16": "^1.0.2",
|
|
1069
|
-
"acorn": "^8.4.1",
|
|
1070
|
-
"acorn-walk": "^8.1.1",
|
|
1071
|
-
"arg": "^4.1.0",
|
|
1072
|
-
"create-require": "^1.1.0",
|
|
1073
|
-
"diff": "^4.0.1",
|
|
1074
|
-
"make-error": "^1.1.1",
|
|
1075
|
-
"v8-compile-cache-lib": "^3.0.1",
|
|
1076
|
-
"yn": "3.1.1"
|
|
1077
|
-
},
|
|
1078
|
-
"bin": {
|
|
1079
|
-
"ts-node": "dist/bin.js",
|
|
1080
|
-
"ts-node-cwd": "dist/bin-cwd.js",
|
|
1081
|
-
"ts-node-esm": "dist/bin-esm.js",
|
|
1082
|
-
"ts-node-script": "dist/bin-script.js",
|
|
1083
|
-
"ts-node-transpile-only": "dist/bin-transpile.js",
|
|
1084
|
-
"ts-script": "dist/bin-script-deprecated.js"
|
|
1085
|
-
},
|
|
1086
|
-
"peerDependencies": {
|
|
1087
|
-
"@swc/core": ">=1.2.50",
|
|
1088
|
-
"@swc/wasm": ">=1.2.50",
|
|
1089
|
-
"@types/node": "*",
|
|
1090
|
-
"typescript": ">=2.7"
|
|
1091
|
-
},
|
|
1092
|
-
"peerDependenciesMeta": {
|
|
1093
|
-
"@swc/core": {
|
|
1094
|
-
"optional": true
|
|
1095
|
-
},
|
|
1096
|
-
"@swc/wasm": {
|
|
1097
|
-
"optional": true
|
|
1098
|
-
}
|
|
1099
|
-
}
|
|
1100
|
-
},
|
|
1101
|
-
"node_modules/tslib": {
|
|
1102
|
-
"version": "2.8.1",
|
|
1103
|
-
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
|
|
1104
|
-
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
|
|
1105
|
-
"license": "0BSD",
|
|
1106
|
-
"optional": true
|
|
1107
|
-
},
|
|
1108
|
-
"node_modules/typescript": {
|
|
1109
|
-
"version": "5.9.3",
|
|
1110
|
-
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
|
|
1111
|
-
"integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
|
|
1112
|
-
"license": "Apache-2.0",
|
|
1113
|
-
"bin": {
|
|
1114
|
-
"tsc": "bin/tsc",
|
|
1115
|
-
"tsserver": "bin/tsserver"
|
|
1116
|
-
},
|
|
1117
|
-
"engines": {
|
|
1118
|
-
"node": ">=14.17"
|
|
1119
|
-
}
|
|
1120
|
-
},
|
|
1121
|
-
"node_modules/undici-types": {
|
|
1122
|
-
"version": "7.16.0",
|
|
1123
|
-
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz",
|
|
1124
|
-
"integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==",
|
|
1125
|
-
"license": "MIT",
|
|
1126
|
-
"peer": true
|
|
1127
|
-
},
|
|
1128
|
-
"node_modules/update-browserslist-db": {
|
|
1129
|
-
"version": "1.1.4",
|
|
1130
|
-
"resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.4.tgz",
|
|
1131
|
-
"integrity": "sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A==",
|
|
1132
|
-
"funding": [
|
|
1133
|
-
{
|
|
1134
|
-
"type": "opencollective",
|
|
1135
|
-
"url": "https://opencollective.com/browserslist"
|
|
1136
|
-
},
|
|
1137
|
-
{
|
|
1138
|
-
"type": "tidelift",
|
|
1139
|
-
"url": "https://tidelift.com/funding/github/npm/browserslist"
|
|
1140
|
-
},
|
|
1141
|
-
{
|
|
1142
|
-
"type": "github",
|
|
1143
|
-
"url": "https://github.com/sponsors/ai"
|
|
1144
|
-
}
|
|
1145
|
-
],
|
|
1146
|
-
"license": "MIT",
|
|
1147
|
-
"dependencies": {
|
|
1148
|
-
"escalade": "^3.2.0",
|
|
1149
|
-
"picocolors": "^1.1.1"
|
|
1150
|
-
},
|
|
1151
|
-
"bin": {
|
|
1152
|
-
"update-browserslist-db": "cli.js"
|
|
1153
|
-
},
|
|
1154
|
-
"peerDependencies": {
|
|
1155
|
-
"browserslist": ">= 4.21.0"
|
|
1156
|
-
}
|
|
1157
|
-
},
|
|
1158
|
-
"node_modules/v8-compile-cache-lib": {
|
|
1159
|
-
"version": "3.0.1",
|
|
1160
|
-
"resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz",
|
|
1161
|
-
"integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==",
|
|
1162
|
-
"license": "MIT"
|
|
1163
|
-
},
|
|
1164
|
-
"node_modules/yn": {
|
|
1165
|
-
"version": "3.1.1",
|
|
1166
|
-
"resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz",
|
|
1167
|
-
"integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==",
|
|
1168
|
-
"license": "MIT",
|
|
1169
|
-
"engines": {
|
|
1170
|
-
"node": ">=6"
|
|
1171
|
-
}
|
|
1172
|
-
}
|
|
1173
|
-
}
|
|
1174
|
-
}
|