- 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
36 lines
881 B
JSON
36 lines
881 B
JSON
{
|
|
"name": "@pkgjs/parseargs",
|
|
"version": "0.11.0",
|
|
"description": "Polyfill of future proposal for `util.parseArgs()`",
|
|
"engines": {
|
|
"node": ">=14"
|
|
},
|
|
"main": "index.js",
|
|
"exports": {
|
|
".": "./index.js",
|
|
"./package.json": "./package.json"
|
|
},
|
|
"scripts": {
|
|
"coverage": "c8 --check-coverage tape 'test/*.js'",
|
|
"test": "c8 tape 'test/*.js'",
|
|
"posttest": "eslint .",
|
|
"fix": "npm run posttest -- --fix"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:pkgjs/parseargs.git"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/pkgjs/parseargs/issues"
|
|
},
|
|
"homepage": "https://github.com/pkgjs/parseargs#readme",
|
|
"devDependencies": {
|
|
"c8": "^7.10.0",
|
|
"eslint": "^8.2.0",
|
|
"eslint-plugin-node-core": "iansu/eslint-plugin-node-core",
|
|
"tape": "^5.2.2"
|
|
}
|
|
}
|