- 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
43 lines
1 KiB
JSON
43 lines
1 KiB
JSON
{
|
|
"name": "cssstyle",
|
|
"description": "An implementation of the CSSStyleDeclaration class from the CSS Object Model specification",
|
|
"keywords": [
|
|
"CSS",
|
|
"CSSStyleDeclaration",
|
|
"StyleSheet"
|
|
],
|
|
"version": "6.2.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/jsdom/cssstyle.git"
|
|
},
|
|
"files": [
|
|
"lib/"
|
|
],
|
|
"main": "./lib/index.js",
|
|
"dependencies": {
|
|
"@asamuzakjp/css-color": "^5.0.1",
|
|
"@csstools/css-syntax-patches-for-csstree": "^1.0.28",
|
|
"css-tree": "^3.1.0",
|
|
"lru-cache": "^11.2.6"
|
|
},
|
|
"devDependencies": {
|
|
"@domenic/eslint-config": "^4.1.0",
|
|
"@webref/css": "^8.3.0",
|
|
"eslint": "^9.39.2",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"eslint-plugin-prettier": "^5.5.5",
|
|
"globals": "^17.3.0",
|
|
"prettier": "^3.8.1"
|
|
},
|
|
"scripts": {
|
|
"lint": "eslint --max-warnings 0",
|
|
"lint:fix": "eslint --fix --max-warnings 0",
|
|
"prepare": "node ./scripts/prepare.mjs",
|
|
"test": "node --test"
|
|
},
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=20"
|
|
}
|
|
}
|