- 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
57 lines
No EOL
1.4 KiB
JSON
57 lines
No EOL
1.4 KiB
JSON
{
|
|
"name": "@quansync/fs",
|
|
"type": "module",
|
|
"version": "1.0.0",
|
|
"description": "Filesystem utilities for Quansync",
|
|
"author": "Kevin Deng <sxzz@sxzz.moe>",
|
|
"license": "MIT",
|
|
"funding": "https://github.com/sponsors/sxzz",
|
|
"homepage": "https://github.com/quansync-dev/fs#readme",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/quansync-dev/fs.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/quansync-dev/fs/issues"
|
|
},
|
|
"exports": {
|
|
".": "./dist/index.mjs",
|
|
"./package.json": "./package.json"
|
|
},
|
|
"main": "./dist/index.mjs",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.mts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"dependencies": {
|
|
"quansync": "^1.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@sxzz/eslint-config": "^7.4.1",
|
|
"@sxzz/prettier-config": "^2.2.6",
|
|
"@types/node": "^24.10.1",
|
|
"@typescript/native-preview": "7.0.0-dev.20251202.1",
|
|
"bumpp": "^10.3.2",
|
|
"eslint": "^9.39.1",
|
|
"prettier": "^3.7.3",
|
|
"tsdown": "^0.17.0-beta.5",
|
|
"tsx": "^4.21.0",
|
|
"typescript": "^5.9.3",
|
|
"vitest": "^4.0.15"
|
|
},
|
|
"prettier": "@sxzz/prettier-config",
|
|
"scripts": {
|
|
"lint": "eslint --cache .",
|
|
"lint:fix": "pnpm run lint --fix",
|
|
"build": "tsdown",
|
|
"dev": "tsdown --watch",
|
|
"test": "vitest",
|
|
"typecheck": "tsgo --noEmit",
|
|
"format": "prettier --cache --write .",
|
|
"release": "bumpp"
|
|
}
|
|
} |