- 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
38 lines
720 B
JSON
38 lines
720 B
JSON
{
|
|
"name": "estree-walker",
|
|
"description": "Traverse an ESTree-compliant AST",
|
|
"version": "3.0.3",
|
|
"private": false,
|
|
"author": "Rich Harris",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Rich-Harris/estree-walker"
|
|
},
|
|
"type": "module",
|
|
"module": "./src/index.js",
|
|
"exports": {
|
|
"./package.json": "./package.json",
|
|
".": {
|
|
"types": "./types/index.d.ts",
|
|
"import": "./src/index.js"
|
|
}
|
|
},
|
|
"types": "types/index.d.ts",
|
|
"scripts": {
|
|
"prepublishOnly": "tsc && npm test",
|
|
"test": "uvu test"
|
|
},
|
|
"dependencies": {
|
|
"@types/estree": "^1.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^4.9.0",
|
|
"uvu": "^0.5.1"
|
|
},
|
|
"files": [
|
|
"src",
|
|
"types",
|
|
"README.md"
|
|
]
|
|
}
|