- 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
32 lines
725 B
JSON
32 lines
725 B
JSON
{
|
|
"name": "@acemir/cssom",
|
|
"description": "CSS Object Model implementation and CSS parser",
|
|
"keywords": [
|
|
"CSS",
|
|
"CSSOM",
|
|
"parser",
|
|
"styleSheet"
|
|
],
|
|
"version": "0.9.31",
|
|
"author": "Nikita Vasilyev <me@elv1s.ru>",
|
|
"contributors": [
|
|
"Acemir Sousa Mendes <acemirsm@gmail.com>"
|
|
],
|
|
"repository": "acemir/CSSOM",
|
|
"files": [
|
|
"lib/",
|
|
"build/"
|
|
],
|
|
"browser": "./build/CSSOM.js",
|
|
"main": "./lib/index.js",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"build": "node build.js",
|
|
"release": "npm run build && changeset publish"
|
|
},
|
|
"devDependencies": {
|
|
"@changesets/changelog-github": "^0.5.2",
|
|
"@changesets/cli": "^2.29.8",
|
|
"@changesets/get-release-plan": "^4.0.14"
|
|
}
|
|
}
|