snipe/web/node_modules/oxc-walker/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

60 lines
No EOL
1.3 KiB
JSON

{
"name": "oxc-walker",
"version": "0.7.0",
"description": "",
"license": "MIT",
"repository": "oxc-project/oxc-walker",
"files": [
"dist"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.mjs"
},
"dependencies": {
"magic-regexp": "^0.10.0"
},
"devDependencies": {
"@types/node": "24.10.3",
"@vitest/coverage-v8": "4.0.16",
"knip": "^5.69.1",
"lint-staged": "16.2.7",
"oxc-parser": "0.108.0",
"oxfmt": "^0.24.0",
"oxlint": "^1.29.0",
"simple-git-hooks": "2.13.1",
"typescript": "5.9.3",
"unbuild": "3.6.1",
"vitest": "4.0.16"
},
"peerDependencies": {
"oxc-parser": ">=0.98.0"
},
"resolutions": {
"oxc-walker": "link:."
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": [
"oxfmt --no-error-on-unmatched-pattern"
],
"*.{js,ts,mjs,cjs,json,.*rc}": [
"pnpm run lint --fix"
]
},
"scripts": {
"build": "unbuild",
"dev": "vitest dev",
"lint": "oxlint",
"fmt": "oxfmt",
"test": "pnpm test:unit && pnpm test:types",
"test:unit": "vitest",
"test:types": "tsc --noEmit"
}
}