- 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
65 lines
No EOL
1.5 KiB
JSON
65 lines
No EOL
1.5 KiB
JSON
{
|
|
"name": "@vitejs/plugin-vue",
|
|
"version": "6.0.5",
|
|
"type": "module",
|
|
"license": "MIT",
|
|
"author": "Evan You",
|
|
"description": "The official plugin for Vue SFC support in Vite.",
|
|
"keywords": [
|
|
"vite",
|
|
"vite-plugin",
|
|
"vue"
|
|
],
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"exports": {
|
|
".": "./dist/index.mjs",
|
|
"./package.json": "./package.json"
|
|
},
|
|
"engines": {
|
|
"node": "^20.19.0 || >=22.12.0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/vitejs/vite-plugin-vue.git",
|
|
"directory": "packages/plugin-vue"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/vitejs/vite-plugin-vue/issues"
|
|
},
|
|
"homepage": "https://github.com/vitejs/vite-plugin-vue/tree/main/packages/plugin-vue#readme",
|
|
"peerDependencies": {
|
|
"vite": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0",
|
|
"vue": "^3.2.25"
|
|
},
|
|
"devDependencies": {
|
|
"@jridgewell/gen-mapping": "^0.3.13",
|
|
"@jridgewell/trace-mapping": "^0.3.31",
|
|
"obug": "^2.1.1",
|
|
"rollup": "^4.57.1",
|
|
"slash": "^5.1.0",
|
|
"source-map-js": "^1.2.1",
|
|
"tsdown": "^0.20.1",
|
|
"vite": "^7.3.1",
|
|
"vue": "^3.5.27"
|
|
},
|
|
"dependencies": {
|
|
"@rolldown/pluginutils": "1.0.0-rc.2"
|
|
},
|
|
"compatiblePackages": {
|
|
"schemaVersion": 1,
|
|
"rolldown": {
|
|
"type": "incompatible",
|
|
"reason": "Uses Vite-specific APIs"
|
|
},
|
|
"rollup": {
|
|
"type": "incompatible",
|
|
"reason": "Uses Vite-specific APIs"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"dev": "tsdown --watch",
|
|
"build": "tsdown"
|
|
}
|
|
} |