snipe/web/node_modules/@unocss/cli/package.json
pyr0ball 7a704441a6 feat(snipe): Vue 3 frontend scaffold + Docker web service
- 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
2026-03-25 15:11:35 -07:00

59 lines
No EOL
1.4 KiB
JSON

{
"name": "@unocss/cli",
"type": "module",
"version": "66.6.7",
"description": "CLI for UnoCSS",
"author": {
"name": "Johann Schopplich",
"email": "pkg@johannschopplich.com",
"url": "https://johannschopplich.com"
},
"license": "MIT",
"funding": "https://github.com/sponsors/antfu",
"homepage": "https://unocss.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/unocss/unocss.git",
"directory": "packages-engine/cli"
},
"bugs": {
"url": "https://github.com/unocss/unocss/issues"
},
"keywords": [],
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
},
"types": "./dist/index.d.mts",
"bin": {
"unocss": "./bin/unocss.mjs"
},
"files": [
"bin",
"dist"
],
"engines": {
"node": ">=14"
},
"dependencies": {
"@jridgewell/remapping": "^2.3.5",
"cac": "^6.7.14",
"chokidar": "^5.0.0",
"colorette": "^2.0.20",
"consola": "^3.4.2",
"magic-string": "^0.30.21",
"pathe": "^2.0.3",
"perfect-debounce": "^2.1.0",
"tinyglobby": "^0.2.15",
"unplugin-utils": "^0.3.1",
"@unocss/config": "66.6.7",
"@unocss/core": "66.6.7",
"@unocss/preset-wind4": "66.6.7",
"@unocss/transformer-directives": "66.6.7",
"@unocss/preset-wind3": "66.6.7"
},
"scripts": {
"build": "tsdown --config-loader unrun",
"dev": "tsdown --config-loader unrun --watch"
}
}