- 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
30 lines
699 B
JSON
30 lines
699 B
JSON
{
|
|
"name": "xml-name-validator",
|
|
"description": "Validates whether a string matches the production for an XML name or qualified name",
|
|
"keywords": [
|
|
"xml",
|
|
"name",
|
|
"qname"
|
|
],
|
|
"version": "5.0.0",
|
|
"author": "Domenic Denicola <d@domenic.me> (https://domenic.me/)",
|
|
"license": "Apache-2.0",
|
|
"repository": "jsdom/xml-name-validator",
|
|
"main": "lib/xml-name-validator.js",
|
|
"files": [
|
|
"lib/"
|
|
],
|
|
"scripts": {
|
|
"test": "node --test",
|
|
"benchmark": "node scripts/benchmark.js",
|
|
"lint": "eslint ."
|
|
},
|
|
"devDependencies": {
|
|
"@domenic/eslint-config": "^3.0.0",
|
|
"benchmark": "^2.1.4",
|
|
"eslint": "^8.53.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
}
|
|
}
|