Fix code quality violations for publish

Progressive breadcrumb resolution with caching, fix double headers

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
root
2025-12-16 04:43:47 +00:00
parent ba3268caca
commit 14dd2fd223
1456 changed files with 136243 additions and 7631 deletions

50
node_modules/@jqhtml/ssr/package.json generated vendored Normal file
View File

@@ -0,0 +1,50 @@
{
"name": "@jqhtml/ssr",
"version": "2.3.26",
"description": "Server-Side Rendering for JQHTML components - renders components to HTML for SEO",
"main": "src/index.js",
"bin": {
"jqhtml-ssr": "src/server.js",
"jqhtml-ssr-example": "bin/jqhtml-ssr-example.js"
},
"scripts": {
"start": "node src/server.js --tcp 9876",
"start:socket": "node src/server.js --socket /tmp/jqhtml-ssr.sock",
"test": "node test/test-protocol.js && node test/test-storage.js && node test/test-server.js",
"example": "node bin/jqhtml-ssr-example.js --help"
},
"keywords": [
"jqhtml",
"ssr",
"server-side-rendering",
"seo",
"jquery",
"components",
"jsdom"
],
"author": "JQHTML Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jqhtml/jqhtml.git",
"directory": "packages/ssr"
},
"engines": {
"node": ">=16.0.0"
},
"files": [
"src",
"bin",
"README.md",
"QUICKSTART.md",
"SPECIFICATION.md"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"jsdom": "^24.0.0",
"jquery": "^3.7.1"
},
"devDependencies": null
}