| 218 | } |
| 219 | |
| 220 | interface Metadata { |
| 221 | build: { |
| 222 | bundle: string; |
| 223 | minify: boolean; |
| 224 | sourcemap: boolean; |
| 225 | }; |
| 226 | dependencies: Record<string, string>; |
| 227 | exports: string[]; |
| 228 | integrity: string | null; |
| 229 | module: string; |
| 230 | name: string; |
| 231 | peerDependencies: Record<string, string>; |
| 232 | specifier: string; |
| 233 | subpath: string; |
| 234 | target: string; |
| 235 | types: string | null; |
| 236 | version: string; |
| 237 | } |
| 238 | |
| 239 | async function createMetadata( |
| 240 | env: Env, |
nothing calls this directly
no outgoing calls
no test coverage detected