- web/: Vue 3 + Vite + UnoCSS + Pinia, dark tactical theme (amber/#0d1117) - AppNav, ListingCard, SearchView with filters/sort, composables (useSnipeMode, useKonamiCode, useMotion), Pinia search store - Steal shimmer, auction countdown, Snipe Mode easter egg all native in Vue - docker/web/: nginx + multi-stage Dockerfile (node build → nginx serve) - compose.yml: api (8510) + web (8509) services - Dockerfile CMD updated to uvicorn for upcoming FastAPI layer - Clean build: 0 TS errors, 380 modules
27 lines
540 B
JSON
27 lines
540 B
JSON
{
|
|
"name": "tinybench",
|
|
"version": "2.9.0",
|
|
"type": "module",
|
|
"packageManager": "pnpm@8.4.0",
|
|
"main": "./dist/index.cjs",
|
|
"module": "./dist/index.js",
|
|
"types": "./dist/index.d.cts",
|
|
"exports": {
|
|
"require": "./dist/index.cjs",
|
|
"import": "./dist/index.js",
|
|
"default": "./dist/index.js"
|
|
},
|
|
"files": [
|
|
"dist/**"
|
|
],
|
|
"repository": "tinylibs/tinybench",
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"benchmark",
|
|
"tinylibs",
|
|
"tiny"
|
|
],
|
|
"scripts": {
|
|
"publish": "npm run build && clean-publish"
|
|
}
|
|
}
|