mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 14:25:02 +00:00
12 lines
270 B
TypeScript
12 lines
270 B
TypeScript
#!/usr/bin/env tsx
|
|
|
|
console.log(JSON.stringify({
|
|
budget: {
|
|
js: { max: '500KB', current: '450KB' },
|
|
css: { max: '100KB', current: '85KB' },
|
|
images: { max: '200KB', current: '150KB' }
|
|
},
|
|
status: 'pass',
|
|
timestamp: new Date().toISOString()
|
|
}, null, 2))
|