snipe/web/node_modules/std-env/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

42 lines
1.1 KiB
JSON

{
"name": "std-env",
"version": "4.0.0",
"description": "Runtime agnostic JS utils",
"license": "MIT",
"repository": "unjs/std-env",
"files": [
"dist"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": "./dist/index.mjs"
},
"scripts": {
"build": "obuild",
"dev": "vitest",
"lint": "oxlint . && oxfmt",
"lint:fix": "oxlint --fix . && oxfmt",
"prepack": "obuild",
"release": "pnpm test && pnpm build && changelogen --release --publish && git push --follow-tags",
"test": "pnpm lint && pnpm typecheck && vitest run --coverage",
"typecheck": "tsgo --noEmit"
},
"devDependencies": {
"@types/node": "^25.2.3",
"@typescript/native-preview": "^7.0.0-dev.20260217.1",
"@vitest/coverage-v8": "^4.0.18",
"changelogen": "^0.6.2",
"esbuild": "^0.27.3",
"mitata": "^1.0.34",
"obuild": "^0.4.28",
"oxfmt": "^0.33.0",
"oxlint": "^1.48.0",
"rollup": "^4.57.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"packageManager": "pnpm@10.30.0"
}