commit ba972d265e9f7149a9342f178cfaf47e30d2d43d Author: Kunthawat Greethong Date: Thu May 21 16:37:51 2026 +0700 Part 10: Images - remaining products and banners diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ed362a0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,10 @@ +node_modules/ +dist/ +.astro/ +.env +.env.local +.env.*.local +*.log +.DS_Store +*.swp +*.swo diff --git a/.npmrc b/.npmrc new file mode 100644 index 0000000..689a1a8 --- /dev/null +++ b/.npmrc @@ -0,0 +1 @@ +onlyBuiltDependencies=better-sqlite3 diff --git a/astro.config.mjs b/astro.config.mjs new file mode 100644 index 0000000..6fd6da8 --- /dev/null +++ b/astro.config.mjs @@ -0,0 +1,29 @@ +import { defineConfig } from 'astro/config' +import tailwindcss from '@tailwindcss/vite' +import { fileURLToPath } from 'url' +import path from 'path' + +const __dirname = path.dirname(fileURLToPath(import.meta.url)) + +export default defineConfig({ + site: 'https://dealplustech.com', + vite: { + plugins: [tailwindcss()], + resolve: { + alias: { + '@': path.resolve(__dirname, './src'), + '@components': path.resolve(__dirname, './src/components'), + '@layouts': path.resolve(__dirname, './src/layouts'), + '@styles': path.resolve(__dirname, './src/styles'), + }, + }, + }, + output: 'static', + build: { + assets: '_assets', + }, + server: { + host: '0.0.0.0', + port: 3100, + }, +}) diff --git a/extensions b/extensions new file mode 120000 index 0000000..dfc3a52 --- /dev/null +++ b/extensions @@ -0,0 +1 @@ +/Users/kunthawatgreethong/.pi/agent/extensions \ No newline at end of file diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..e3104e7 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,6386 @@ +{ + "name": "dealplustech-emdash", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "dealplustech-emdash", + "version": "1.0.0", + "dependencies": { + "@astrojs/check": "^0.9.4", + "@tailwindcss/typography": "^0.5.15", + "@tailwindcss/vite": "^4.0.0", + "astro": "^6.1.7", + "marked": "^18.0.3", + "tailwindcss": "^4.0.0", + "typescript": "^5.6.3" + }, + "devDependencies": {}, + "engines": { + "node": ">=20.0.0" + } + }, + "node_modules/@astrojs/check": { + "version": "0.9.9", + "resolved": "https://registry.npmjs.org/@astrojs/check/-/check-0.9.9.tgz", + "integrity": "sha512-A5UW8uIuErLWEoRQvzgXpO1gTjUFtK8r7nU2Z7GewAMxUb7bPvpk11qaKKgxqXlHJWlAvaaxy+Xg28A6bmQ1Tg==", + "license": "MIT", + "dependencies": { + "@astrojs/language-server": "^2.16.7", + "chokidar": "^4.0.3", + "kleur": "^4.1.5", + "yargs": "^17.7.2" + }, + "bin": { + "astro-check": "bin/astro-check.js" + }, + "peerDependencies": { + "typescript": "^5.0.0 || ^6.0.0" + } + }, + "node_modules/@astrojs/compiler": { + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/@astrojs/compiler/-/compiler-2.13.1.tgz", + "integrity": "sha512-f3FN83d2G/v32ipNClRKgYv30onQlMZX1vCeZMjPsMMPl1mDpmbl0+N5BYo4S/ofzqJyS5hvwacEo0CCVDn/Qg==", + "license": "MIT" + }, + "node_modules/@astrojs/internal-helpers": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/@astrojs/internal-helpers/-/internal-helpers-0.9.0.tgz", + "integrity": "sha512-GdYkzR26re8izmyYlBqf4z2s7zNngmWLFuxw0UKiPNqHraZGS6GKWIwSHgS22RDlu2ePFJ8bzmpBcUszut/SDg==", + "license": "MIT", + "dependencies": { + "picomatch": "^4.0.4" + } + }, + "node_modules/@astrojs/language-server": { + "version": "2.16.7", + "resolved": "https://registry.npmjs.org/@astrojs/language-server/-/language-server-2.16.7.tgz", + "integrity": "sha512-b64bWT74Vq/ORcSqW7TdIjjpB6hcl+Ei/lMANIUaAGlLPiYNtPTRI/j2tzvugT+LoVwfJtE2Ukq/t2OGCyEtfQ==", + "license": "MIT", + "dependencies": { + "@astrojs/compiler": "^2.13.1", + "@astrojs/yaml2ts": "^0.2.3", + "@jridgewell/sourcemap-codec": "^1.5.5", + "@volar/kit": "~2.4.28", + "@volar/language-core": "~2.4.28", + "@volar/language-server": "~2.4.28", + "@volar/language-service": "~2.4.28", + "muggle-string": "^0.4.1", + "tinyglobby": "^0.2.16", + "volar-service-css": "0.0.70", + "volar-service-emmet": "0.0.70", + "volar-service-html": "0.0.70", + "volar-service-prettier": "0.0.70", + "volar-service-typescript": "0.0.70", + "volar-service-typescript-twoslash-queries": "0.0.70", + "volar-service-yaml": "0.0.70", + "vscode-html-languageservice": "^5.6.2", + "vscode-uri": "^3.1.0" + }, + "bin": { + "astro-ls": "bin/nodeServer.js" + }, + "peerDependencies": { + "prettier": "^3.0.0", + "prettier-plugin-astro": ">=0.11.0" + }, + "peerDependenciesMeta": { + "prettier": { + "optional": true + }, + "prettier-plugin-astro": { + "optional": true + } + } + }, + "node_modules/@astrojs/markdown-remark": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/@astrojs/markdown-remark/-/markdown-remark-7.1.1.tgz", + "integrity": "sha512-C6e9BnLGlbdv6bV8MYGeHpHxsUHrCrB4OuRLqi5LI7oiBVcBcqfUN06zpwFQdHgV48QCCrMmLpyqBr7VqC+swA==", + "license": "MIT", + "dependencies": { + "@astrojs/internal-helpers": "0.9.0", + "@astrojs/prism": "4.0.1", + "github-slugger": "^2.0.0", + "hast-util-from-html": "^2.0.3", + "hast-util-to-text": "^4.0.2", + "js-yaml": "^4.1.1", + "mdast-util-definitions": "^6.0.0", + "rehype-raw": "^7.0.0", + "rehype-stringify": "^10.0.1", + "remark-gfm": "^4.0.1", + "remark-parse": "^11.0.0", + "remark-rehype": "^11.1.2", + "remark-smartypants": "^3.0.2", + "retext-smartypants": "^6.2.0", + "shiki": "^4.0.0", + "smol-toml": "^1.6.0", + "unified": "^11.0.5", + "unist-util-remove-position": "^5.0.0", + "unist-util-visit": "^5.1.0", + "unist-util-visit-parents": "^6.0.2", + "vfile": "^6.0.3" + } + }, + "node_modules/@astrojs/prism": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/@astrojs/prism/-/prism-4.0.1.tgz", + "integrity": "sha512-nksZQVjlferuWzhPsBpQ1JE5XuKAf1id1/9Hj4a9KG4+ofrlzxUUwX4YGQF/SuDiuiGKEnzopGOt38F3AnVWsQ==", + "license": "MIT", + "dependencies": { + "prismjs": "^1.30.0" + }, + "engines": { + "node": ">=22.12.0" + } + }, + "node_modules/@astrojs/telemetry": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/@astrojs/telemetry/-/telemetry-3.3.1.tgz", + "integrity": "sha512-7fcIxXS9J4ls5tr8b3ww9rbAIz2+HrhNJYZdkAhhB4za/I5IZ/60g+Bs8q7zwG0tOIZfNB4JWhVJ1Qkl/OrNCw==", + "license": "MIT", + "dependencies": { + "ci-info": "^4.4.0", + "dlv": "^1.1.3", + "dset": "^3.1.4", + "is-docker": "^4.0.0", + "is-wsl": "^3.1.1", + "which-pm-runs": "^1.1.0" + }, + "engines": { + "node": "18.20.8 || ^20.3.0 || >=22.0.0" + } + }, + "node_modules/@astrojs/yaml2ts": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@astrojs/yaml2ts/-/yaml2ts-0.2.3.tgz", + "integrity": "sha512-PJzRmgQzUxI2uwpdX2lXSHtP4G8ocp24/t+bZyf5Fy0SZLSF9f9KXZoMlFM/XCGue+B0nH/2IZ7FpBYQATBsCg==", + "license": "MIT", + "dependencies": { + "yaml": "^2.8.2" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", + "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz", + "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.29.3", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.3.tgz", + "integrity": "sha512-b3ctpQwp+PROvU/cttc4OYl4MzfJUWy6FZg+PMXfzmt/+39iHVF0sDfqay8TQM3JA2EUOyKcFZt75jWriQijsA==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.29.0" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/types": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.0.tgz", + "integrity": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==", + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.27.1", + "@babel/helper-validator-identifier": "^7.28.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@capsizecss/unpack": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@capsizecss/unpack/-/unpack-4.0.0.tgz", + "integrity": "sha512-VERIM64vtTP1C4mxQ5thVT9fK0apjPFobqybMtA1UdUujWka24ERHbRHFGmpbbhp73MhV+KSsHQH9C6uOTdEQA==", + "license": "MIT", + "dependencies": { + "fontkitten": "^1.0.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@clack/core": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@clack/core/-/core-1.3.0.tgz", + "integrity": "sha512-xJPHpAmEQUBrXSLx0gF+q5K/IyihXpsHZcha+jB+tyahsKRK3Dxo4D0coZDewHo12NhiuzC3dTtMPbm53GEAAA==", + "license": "MIT", + "dependencies": { + "fast-wrap-ansi": "^0.2.0", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 20.12.0" + } + }, + "node_modules/@clack/prompts": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@clack/prompts/-/prompts-1.3.0.tgz", + "integrity": "sha512-GgcWwRCs/xPtaqlMy8qRhPnZf9vlWcWZNHAitnVQ3yk7JmSralSiq5q07yaffYE8SogtDm7zFeKccx1QNVARpw==", + "license": "MIT", + "dependencies": { + "@clack/core": "1.3.0", + "fast-string-width": "^3.0.2", + "fast-wrap-ansi": "^0.2.0", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 20.12.0" + } + }, + "node_modules/@emmetio/abbreviation": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/@emmetio/abbreviation/-/abbreviation-2.3.3.tgz", + "integrity": "sha512-mgv58UrU3rh4YgbE/TzgLQwJ3pFsHHhCLqY20aJq+9comytTXUDNGG/SMtSeMJdkpxgXSXunBGLD8Boka3JyVA==", + "license": "MIT", + "dependencies": { + "@emmetio/scanner": "^1.0.4" + } + }, + "node_modules/@emmetio/css-abbreviation": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/@emmetio/css-abbreviation/-/css-abbreviation-2.1.8.tgz", + "integrity": "sha512-s9yjhJ6saOO/uk1V74eifykk2CBYi01STTK3WlXWGOepyKa23ymJ053+DNQjpFcy1ingpaO7AxCcwLvHFY9tuw==", + "license": "MIT", + "dependencies": { + "@emmetio/scanner": "^1.0.4" + } + }, + "node_modules/@emmetio/css-parser": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/@emmetio/css-parser/-/css-parser-0.4.1.tgz", + "integrity": "sha512-2bC6m0MV/voF4CTZiAbG5MWKbq5EBmDPKu9Sb7s7nVcEzNQlrZP6mFFFlIaISM8X6514H9shWMme1fCm8cWAfQ==", + "license": "MIT", + "dependencies": { + "@emmetio/stream-reader": "^2.2.0", + "@emmetio/stream-reader-utils": "^0.1.0" + } + }, + "node_modules/@emmetio/html-matcher": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@emmetio/html-matcher/-/html-matcher-1.3.0.tgz", + "integrity": "sha512-NTbsvppE5eVyBMuyGfVu2CRrLvo7J4YHb6t9sBFLyY03WYhXET37qA4zOYUjBWFCRHO7pS1B9khERtY0f5JXPQ==", + "license": "ISC", + "dependencies": { + "@emmetio/scanner": "^1.0.0" + } + }, + "node_modules/@emmetio/scanner": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@emmetio/scanner/-/scanner-1.0.4.tgz", + "integrity": "sha512-IqRuJtQff7YHHBk4G8YZ45uB9BaAGcwQeVzgj/zj8/UdOhtQpEIupUhSk8dys6spFIWVZVeK20CzGEnqR5SbqA==", + "license": "MIT" + }, + "node_modules/@emmetio/stream-reader": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@emmetio/stream-reader/-/stream-reader-2.2.0.tgz", + "integrity": "sha512-fXVXEyFA5Yv3M3n8sUGT7+fvecGrZP4k6FnWWMSZVQf69kAq0LLpaBQLGcPR30m3zMmKYhECP4k/ZkzvhEW5kw==", + "license": "MIT" + }, + "node_modules/@emmetio/stream-reader-utils": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/@emmetio/stream-reader-utils/-/stream-reader-utils-0.1.0.tgz", + "integrity": "sha512-ZsZ2I9Vzso3Ho/pjZFsmmZ++FWeEd/txqybHTm4OgaZzdS8V9V/YYWQwg5TC38Z7uLWUV1vavpLLbjJtKubR1A==", + "license": "MIT" + }, + "node_modules/@emnapi/runtime": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.10.0.tgz", + "integrity": "sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==", + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.7.tgz", + "integrity": "sha512-EKX3Qwmhz1eMdEJokhALr0YiD0lhQNwDqkPYyPhiSwKrh7/4KRjQc04sZ8db+5DVVnZ1LmbNDI1uAMPEUBnQPg==", + "cpu": [ + "ppc64" + ], + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.7.tgz", + "integrity": "sha512-jbPXvB4Yj2yBV7HUfE2KHe4GJX51QplCN1pGbYjvsyCZbQmies29EoJbkEc+vYuU5o45AfQn37vZlyXy4YJ8RQ==", + "cpu": [ + "arm" + ], + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.7.tgz", + "integrity": "sha512-62dPZHpIXzvChfvfLJow3q5dDtiNMkwiRzPylSCfriLvZeq0a1bWChrGx/BbUbPwOrsWKMn8idSllklzBy+dgQ==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.7.tgz", + "integrity": "sha512-x5VpMODneVDb70PYV2VQOmIUUiBtY3D3mPBG8NxVk5CogneYhkR7MmM3yR/uMdITLrC1ml/NV1rj4bMJuy9MCg==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.7.tgz", + "integrity": "sha512-5lckdqeuBPlKUwvoCXIgI2D9/ABmPq3Rdp7IfL70393YgaASt7tbju3Ac+ePVi3KDH6N2RqePfHnXkaDtY9fkw==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.7.tgz", + "integrity": "sha512-rYnXrKcXuT7Z+WL5K980jVFdvVKhCHhUwid+dDYQpH+qu+TefcomiMAJpIiC2EM3Rjtq0sO3StMV/+3w3MyyqQ==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.7.tgz", + "integrity": "sha512-B48PqeCsEgOtzME2GbNM2roU29AMTuOIN91dsMO30t+Ydis3z/3Ngoj5hhnsOSSwNzS+6JppqWsuhTp6E82l2w==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.7.tgz", + "integrity": "sha512-jOBDK5XEjA4m5IJK3bpAQF9/Lelu/Z9ZcdhTRLf4cajlB+8VEhFFRjWgfy3M1O4rO2GQ/b2dLwCUGpiF/eATNQ==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.7.tgz", + "integrity": "sha512-RkT/YXYBTSULo3+af8Ib0ykH8u2MBh57o7q/DAs3lTJlyVQkgQvlrPTnjIzzRPQyavxtPtfg0EopvDyIt0j1rA==", + "cpu": [ + "arm" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.7.tgz", + "integrity": "sha512-RZPHBoxXuNnPQO9rvjh5jdkRmVizktkT7TCDkDmQ0W2SwHInKCAV95GRuvdSvA7w4VMwfCjUiPwDi0ZO6Nfe9A==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.7.tgz", + "integrity": "sha512-GA48aKNkyQDbd3KtkplYWT102C5sn/EZTY4XROkxONgruHPU72l+gW+FfF8tf2cFjeHaRbWpOYa/uRBz/Xq1Pg==", + "cpu": [ + "ia32" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.7.tgz", + "integrity": "sha512-a4POruNM2oWsD4WKvBSEKGIiWQF8fZOAsycHOt6JBpZ+JN2n2JH9WAv56SOyu9X5IqAjqSIPTaJkqN8F7XOQ5Q==", + "cpu": [ + "loong64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.7.tgz", + "integrity": "sha512-KabT5I6StirGfIz0FMgl1I+R1H73Gp0ofL9A3nG3i/cYFJzKHhouBV5VWK1CSgKvVaG4q1RNpCTR2LuTVB3fIw==", + "cpu": [ + "mips64el" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.7.tgz", + "integrity": "sha512-gRsL4x6wsGHGRqhtI+ifpN/vpOFTQtnbsupUF5R5YTAg+y/lKelYR1hXbnBdzDjGbMYjVJLJTd2OFmMewAgwlQ==", + "cpu": [ + "ppc64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.7.tgz", + "integrity": "sha512-hL25LbxO1QOngGzu2U5xeXtxXcW+/GvMN3ejANqXkxZ/opySAZMrc+9LY/WyjAan41unrR3YrmtTsUpwT66InQ==", + "cpu": [ + "riscv64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.7.tgz", + "integrity": "sha512-2k8go8Ycu1Kb46vEelhu1vqEP+UeRVj2zY1pSuPdgvbd5ykAw82Lrro28vXUrRmzEsUV0NzCf54yARIK8r0fdw==", + "cpu": [ + "s390x" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.7.tgz", + "integrity": "sha512-hzznmADPt+OmsYzw1EE33ccA+HPdIqiCRq7cQeL1Jlq2gb1+OyWBkMCrYGBJ+sxVzve2ZJEVeePbLM2iEIZSxA==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.7.tgz", + "integrity": "sha512-b6pqtrQdigZBwZxAn1UpazEisvwaIDvdbMbmrly7cDTMFnw/+3lVxxCTGOrkPVnsYIosJJXAsILG9XcQS+Yu6w==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.7.tgz", + "integrity": "sha512-OfatkLojr6U+WN5EDYuoQhtM+1xco+/6FSzJJnuWiUw5eVcicbyK3dq5EeV/QHT1uy6GoDhGbFpprUiHUYggrw==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.7.tgz", + "integrity": "sha512-AFuojMQTxAz75Fo8idVcqoQWEHIXFRbOc1TrVcFSgCZtQfSdc1RXgB3tjOn/krRHENUB4j00bfGjyl2mJrU37A==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.7.tgz", + "integrity": "sha512-+A1NJmfM8WNDv5CLVQYJ5PshuRm/4cI6WMZRg1by1GwPIQPCTs1GLEUHwiiQGT5zDdyLiRM/l1G0Pv54gvtKIg==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openharmony-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.7.tgz", + "integrity": "sha512-+KrvYb/C8zA9CU/g0sR6w2RBw7IGc5J2BPnc3dYc5VJxHCSF1yNMxTV5LQ7GuKteQXZtspjFbiuW5/dOj7H4Yw==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.7.tgz", + "integrity": "sha512-ikktIhFBzQNt/QDyOL580ti9+5mL/YZeUPKU2ivGtGjdTYoqz6jObj6nOMfhASpS4GU4Q/Clh1QtxWAvcYKamA==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.7.tgz", + "integrity": "sha512-7yRhbHvPqSpRUV7Q20VuDwbjW5kIMwTHpptuUzV+AA46kiPze5Z7qgt6CLCK3pWFrHeNfDd1VKgyP4O+ng17CA==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.7.tgz", + "integrity": "sha512-SmwKXe6VHIyZYbBLJrhOoCJRB/Z1tckzmgTLfFYOfpMAx63BJEaL9ExI8x7v0oAO3Zh6D/Oi1gVxEYr5oUCFhw==", + "cpu": [ + "ia32" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.7.tgz", + "integrity": "sha512-56hiAJPhwQ1R4i+21FVF7V8kSD5zZTdHcVuRFMW0hn753vVfQN8xlx4uOPT4xoGH0Z/oVATuR82AiqSTDIpaHg==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@img/colour": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@img/colour/-/colour-1.1.0.tgz", + "integrity": "sha512-Td76q7j57o/tLVdgS746cYARfSyxk8iEfRxewL9h4OMzYhbW4TAcppl0mT4eyqXddh6L/jwoM75mo7ixa/pCeQ==", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=18" + } + }, + "node_modules/@img/sharp-darwin-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.34.5.tgz", + "integrity": "sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==", + "cpu": [ + "arm64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-darwin-arm64": "1.2.4" + } + }, + "node_modules/@img/sharp-darwin-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.34.5.tgz", + "integrity": "sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==", + "cpu": [ + "x64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-darwin-x64": "1.2.4" + } + }, + "node_modules/@img/sharp-libvips-darwin-arm64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.2.4.tgz", + "integrity": "sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==", + "cpu": [ + "arm64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "darwin" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-darwin-x64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.2.4.tgz", + "integrity": "sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==", + "cpu": [ + "x64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "darwin" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-arm": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.2.4.tgz", + "integrity": "sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==", + "cpu": [ + "arm" + ], + "libc": [ + "glibc" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-arm64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.2.4.tgz", + "integrity": "sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==", + "cpu": [ + "arm64" + ], + "libc": [ + "glibc" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-ppc64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-ppc64/-/sharp-libvips-linux-ppc64-1.2.4.tgz", + "integrity": "sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==", + "cpu": [ + "ppc64" + ], + "libc": [ + "glibc" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-riscv64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-riscv64/-/sharp-libvips-linux-riscv64-1.2.4.tgz", + "integrity": "sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==", + "cpu": [ + "riscv64" + ], + "libc": [ + "glibc" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-s390x": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.2.4.tgz", + "integrity": "sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==", + "cpu": [ + "s390x" + ], + "libc": [ + "glibc" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-x64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.2.4.tgz", + "integrity": "sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==", + "cpu": [ + "x64" + ], + "libc": [ + "glibc" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linuxmusl-arm64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.2.4.tgz", + "integrity": "sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==", + "cpu": [ + "arm64" + ], + "libc": [ + "musl" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linuxmusl-x64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.2.4.tgz", + "integrity": "sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==", + "cpu": [ + "x64" + ], + "libc": [ + "musl" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-linux-arm": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.34.5.tgz", + "integrity": "sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==", + "cpu": [ + "arm" + ], + "libc": [ + "glibc" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-arm": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.34.5.tgz", + "integrity": "sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==", + "cpu": [ + "arm64" + ], + "libc": [ + "glibc" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-arm64": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-ppc64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-ppc64/-/sharp-linux-ppc64-0.34.5.tgz", + "integrity": "sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==", + "cpu": [ + "ppc64" + ], + "libc": [ + "glibc" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-ppc64": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-riscv64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-riscv64/-/sharp-linux-riscv64-0.34.5.tgz", + "integrity": "sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==", + "cpu": [ + "riscv64" + ], + "libc": [ + "glibc" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-riscv64": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-s390x": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.34.5.tgz", + "integrity": "sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==", + "cpu": [ + "s390x" + ], + "libc": [ + "glibc" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-s390x": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.34.5.tgz", + "integrity": "sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==", + "cpu": [ + "x64" + ], + "libc": [ + "glibc" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-x64": "1.2.4" + } + }, + "node_modules/@img/sharp-linuxmusl-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.34.5.tgz", + "integrity": "sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==", + "cpu": [ + "arm64" + ], + "libc": [ + "musl" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linuxmusl-arm64": "1.2.4" + } + }, + "node_modules/@img/sharp-linuxmusl-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.34.5.tgz", + "integrity": "sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==", + "cpu": [ + "x64" + ], + "libc": [ + "musl" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linuxmusl-x64": "1.2.4" + } + }, + "node_modules/@img/sharp-wasm32": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.34.5.tgz", + "integrity": "sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==", + "cpu": [ + "wasm32" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT", + "optional": true, + "dependencies": { + "@emnapi/runtime": "^1.7.0" + }, + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-win32-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-arm64/-/sharp-win32-arm64-0.34.5.tgz", + "integrity": "sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==", + "cpu": [ + "arm64" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-win32-ia32": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.34.5.tgz", + "integrity": "sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==", + "cpu": [ + "ia32" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-win32-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.34.5.tgz", + "integrity": "sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==", + "cpu": [ + "x64" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.13", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", + "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/remapping": { + "version": "2.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz", + "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==", + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.31", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", + "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@oslojs/encoding": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@oslojs/encoding/-/encoding-1.1.0.tgz", + "integrity": "sha512-70wQhgYmndg4GCPxPPxPGevRKqTIJ2Nh4OkiMWmDAVYsTQ+Ta7Sq+rPevXyXGdzr30/qZBnyOalCszoMxlyldQ==", + "license": "MIT" + }, + "node_modules/@rollup/pluginutils": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.3.0.tgz", + "integrity": "sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==", + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.0", + "estree-walker": "^2.0.2", + "picomatch": "^4.0.2" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" + }, + "peerDependenciesMeta": { + "rollup": { + "optional": true + } + } + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.60.3.tgz", + "integrity": "sha512-x35CNW/ANXG3hE/EZpRU8MXX1JDN86hBb2wMGAtltkz7pc6cxgjpy1OMMfDosOQ+2hWqIkag/fGok1Yady9nGw==", + "cpu": [ + "arm" + ], + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.60.3.tgz", + "integrity": "sha512-xw3xtkDApIOGayehp2+Rz4zimfkaX65r4t47iy+ymQB2G4iJCBBfj0ogVg5jpvjpn8UWn/+q9tprxleYeNp3Hw==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.60.3.tgz", + "integrity": "sha512-vo6Y5Qfpx7/5EaamIwi0WqW2+zfiusVihKatLvtN1VFVy3D13uERk/6gZLU1UiHRL6fDXqj/ELIeVRGnvcTE1g==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.60.3.tgz", + "integrity": "sha512-D+0QGcZhBzTN82weOnsSlY7V7+RMmPuF1CkbxyMAGE8+ZHeUjyb76ZiWmBlCu//AQQONvxcqRbwZTajZKqjuOw==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-freebsd-arm64": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.60.3.tgz", + "integrity": "sha512-6HnvHCT7fDyj6R0Ph7A6x8dQS/S38MClRWeDLqc0MdfWkxjiu1HSDYrdPhqSILzjTIC/pnXbbJbo+ft+gy/9hQ==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-freebsd-x64": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.60.3.tgz", + "integrity": "sha512-KHLgC3WKlUYW3ShFKnnosZDOJ0xjg9zp7au3sIm2bs/tGBeC2ipmvRh/N7JKi0t9Ue20C0dpEshi8WUubg+cnA==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.60.3.tgz", + "integrity": "sha512-DV6fJoxEYWJOvaZIsok7KrYl0tPvga5OZ2yvKHNNYyk/2roMLqQAbGhr78EQ5YhHpnhLKJD3S1WFusAkmUuV5g==", + "cpu": [ + "arm" + ], + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.60.3.tgz", + "integrity": "sha512-mQKoJAzvuOs6F+TZybQO4GOTSMUu7v0WdxEk24krQ/uUxXoPTtHjuaUuPmFhtBcM4K0ons8nrE3JyhTuCFtT/w==", + "cpu": [ + "arm" + ], + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.60.3.tgz", + "integrity": "sha512-Whjj2qoiJ6+OOJMGptTYazaJvjOJm+iKHpXQM1P3LzGjt7Ff++Tp7nH4N8J/BUA7R9IHfDyx4DJIflifwnbmIA==", + "cpu": [ + "arm64" + ], + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.60.3.tgz", + "integrity": "sha512-4YTNHKqGng5+yiZt3mg77nmyuCfmNfX4fPmyUapBcIk+BdwSwmCWGXOUxhXbBEkFHtoN5boLj/5NON+u5QC9tg==", + "cpu": [ + "arm64" + ], + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loong64-gnu": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.60.3.tgz", + "integrity": "sha512-SU3kNlhkpI4UqlUc2VXPGK9o886ZsSeGfMAX2ba2b8DKmMXq4AL7KUrkSWVbb7koVqx41Yczx6dx5PNargIrEA==", + "cpu": [ + "loong64" + ], + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loong64-musl": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.60.3.tgz", + "integrity": "sha512-6lDLl5h4TXpB1mTf2rQWnAk/LcXrx9vBfu/DT5TIPhvMhRWaZ5MxkIc8u4lJAmBo6klTe1ywXIUHFjylW505sg==", + "cpu": [ + "loong64" + ], + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-ppc64-gnu": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.60.3.tgz", + "integrity": "sha512-BMo8bOw8evlup/8G+cj5xWtPyp93xPdyoSN16Zy90Q2QZ0ZYRhCt6ZJSwbrRzG9HApFabjwj2p25TUPDWrhzqQ==", + "cpu": [ + "ppc64" + ], + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-ppc64-musl": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.60.3.tgz", + "integrity": "sha512-E0L8X1dZN1/Rph+5VPF6Xj2G7JJvMACVXtamTJIDrVI44Y3K+G8gQaMEAavbqCGTa16InptiVrX6eM6pmJ+7qA==", + "cpu": [ + "ppc64" + ], + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.60.3.tgz", + "integrity": "sha512-oZJ/WHaVfHUiRAtmTAeo3DcevNsVvH8mbvodjZy7D5QKvCefO371SiKRpxoDcCxB3PTRTLayWBkvmDQKTcX/sw==", + "cpu": [ + "riscv64" + ], + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-musl": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.60.3.tgz", + "integrity": "sha512-Dhbyh7j9FybM3YaTgaHmVALwA8AkUwTPccyCQ79TG9AJUsMQqgN1DDEZNr4+QUfwiWvLDumW5vdwzoeUF+TNxQ==", + "cpu": [ + "riscv64" + ], + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.60.3.tgz", + "integrity": "sha512-cJd1X5XhHHlltkaypz1UcWLA8AcoIi1aWhsvaWDskD1oz2eKCypnqvTQ8ykMNI0RSmm7NkTdSqSSD7zM0xa6Ig==", + "cpu": [ + "s390x" + ], + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.60.3.tgz", + "integrity": "sha512-DAZDBHQfG2oQuhY7mc6I3/qB4LU2fQCjRvxbDwd/Jdvb9fypP4IJ4qmtu6lNjes6B531AI8cg1aKC2di97bUxA==", + "cpu": [ + "x64" + ], + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.60.3.tgz", + "integrity": "sha512-cRxsE8c13mZOh3vP+wLDxpQBRrOHDIGOWyDL93Sy0Ga8y515fBcC2pjUfFwUe5T7tqvTvWbCpg1URM/AXdWIXA==", + "cpu": [ + "x64" + ], + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-openbsd-x64": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.60.3.tgz", + "integrity": "sha512-QaWcIgRxqEdQdhJqW4DJctsH6HCmo5vHxY0krHSX4jMtOqfzC+dqDGuHM87bu4H8JBeibWx7jFz+h6/4C8wA5Q==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ] + }, + "node_modules/@rollup/rollup-openharmony-arm64": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.60.3.tgz", + "integrity": "sha512-AaXwSvUi3QIPtroAUw1t5yHGIyqKEXwH54WUocFolZhpGDruJcs8c+xPNDRn4XiQsS7MEwnYsHW2l0MBLDMkWg==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.60.3.tgz", + "integrity": "sha512-65LAKM/bAWDqKNEelHlcHvm2V+Vfb8C6INFxQXRHCvaVN1rJfwr4NvdP4FyzUaLqWfaCGaadf6UbTm8xJeYfEg==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.60.3.tgz", + "integrity": "sha512-EEM2gyhBF5MFnI6vMKdX1LAosE627RGBzIoGMdLloPZkXrUN0Ckqgr2Qi8+J3zip/8NVVro3/FjB+tjhZUgUHA==", + "cpu": [ + "ia32" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-gnu": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.60.3.tgz", + "integrity": "sha512-E5Eb5H/DpxaoXH++Qkv28RcUJboMopmdDUALBczvHMf7hNIxaDZqwY5lK12UK1BHacSmvupoEWGu+n993Z0y1A==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.60.3.tgz", + "integrity": "sha512-hPt/bgL5cE+Qp+/TPHBqptcAgPzgj46mPcg/16zNUmbQk0j+mOEQV/+Lqu8QRtDV3Ek95Q6FeFITpuhl6OTsAA==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@shikijs/core": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@shikijs/core/-/core-4.0.2.tgz", + "integrity": "sha512-hxT0YF4ExEqB8G/qFdtJvpmHXBYJ2lWW7qTHDarVkIudPFE6iCIrqdgWxGn5s+ppkGXI0aEGlibI0PAyzP3zlw==", + "license": "MIT", + "dependencies": { + "@shikijs/primitive": "4.0.2", + "@shikijs/types": "4.0.2", + "@shikijs/vscode-textmate": "^10.0.2", + "@types/hast": "^3.0.4", + "hast-util-to-html": "^9.0.5" + }, + "engines": { + "node": ">=20" + } + }, + "node_modules/@shikijs/engine-javascript": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@shikijs/engine-javascript/-/engine-javascript-4.0.2.tgz", + "integrity": "sha512-7PW0Nm49DcoUIQEXlJhNNBHyoGMjalRETTCcjMqEaMoJRLljy1Bi/EGV3/qLBgLKQejdspiiYuHGQW6dX94Nag==", + "license": "MIT", + "dependencies": { + "@shikijs/types": "4.0.2", + "@shikijs/vscode-textmate": "^10.0.2", + "oniguruma-to-es": "^4.3.4" + }, + "engines": { + "node": ">=20" + } + }, + "node_modules/@shikijs/engine-oniguruma": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@shikijs/engine-oniguruma/-/engine-oniguruma-4.0.2.tgz", + "integrity": "sha512-UpCB9Y2sUKlS9z8juFSKz7ZtysmeXCgnRF0dlhXBkmQnek7lAToPte8DkxmEYGNTMii72zU/lyXiCB6StuZeJg==", + "license": "MIT", + "dependencies": { + "@shikijs/types": "4.0.2", + "@shikijs/vscode-textmate": "^10.0.2" + }, + "engines": { + "node": ">=20" + } + }, + "node_modules/@shikijs/langs": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@shikijs/langs/-/langs-4.0.2.tgz", + "integrity": "sha512-KaXby5dvoeuZzN0rYQiPMjFoUrz4hgwIE+D6Du9owcHcl6/g16/yT5BQxSW5cGt2MZBz6Hl0YuRqf12omRfUUg==", + "license": "MIT", + "dependencies": { + "@shikijs/types": "4.0.2" + }, + "engines": { + "node": ">=20" + } + }, + "node_modules/@shikijs/primitive": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@shikijs/primitive/-/primitive-4.0.2.tgz", + "integrity": "sha512-M6UMPrSa3fN5ayeJwFVl9qWofl273wtK1VG8ySDZ1mQBfhCpdd8nEx7nPZ/tk7k+TYcpqBZzj/AnwxT9lO+HJw==", + "license": "MIT", + "dependencies": { + "@shikijs/types": "4.0.2", + "@shikijs/vscode-textmate": "^10.0.2", + "@types/hast": "^3.0.4" + }, + "engines": { + "node": ">=20" + } + }, + "node_modules/@shikijs/themes": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@shikijs/themes/-/themes-4.0.2.tgz", + "integrity": "sha512-mjCafwt8lJJaVSsQvNVrJumbnnj1RI8jbUKrPKgE6E3OvQKxnuRoBaYC51H4IGHePsGN/QtALglWBU7DoKDFnA==", + "license": "MIT", + "dependencies": { + "@shikijs/types": "4.0.2" + }, + "engines": { + "node": ">=20" + } + }, + "node_modules/@shikijs/types": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@shikijs/types/-/types-4.0.2.tgz", + "integrity": "sha512-qzbeRooUTPnLE+sHD/Z8DStmaDgnbbc/pMrU203950aRqjX/6AFHeDYT+j00y2lPdz0ywJKx7o/7qnqTivtlXg==", + "license": "MIT", + "dependencies": { + "@shikijs/vscode-textmate": "^10.0.2", + "@types/hast": "^3.0.4" + }, + "engines": { + "node": ">=20" + } + }, + "node_modules/@shikijs/vscode-textmate": { + "version": "10.0.2", + "resolved": "https://registry.npmjs.org/@shikijs/vscode-textmate/-/vscode-textmate-10.0.2.tgz", + "integrity": "sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==", + "license": "MIT" + }, + "node_modules/@tailwindcss/node": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.2.4.tgz", + "integrity": "sha512-Ai7+yQPxz3ddrDQzFfBKdHEVBg0w3Zl83jnjuwxnZOsnH9pGn93QHQtpU0p/8rYWxvbFZHneni6p1BSLK4DkGA==", + "license": "MIT", + "dependencies": { + "@jridgewell/remapping": "^2.3.5", + "enhanced-resolve": "^5.19.0", + "jiti": "^2.6.1", + "lightningcss": "1.32.0", + "magic-string": "^0.30.21", + "source-map-js": "^1.2.1", + "tailwindcss": "4.2.4" + } + }, + "node_modules/@tailwindcss/oxide": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.2.4.tgz", + "integrity": "sha512-9El/iI069DKDSXwTvB9J4BwdO5JhRrOweGaK25taBAvBXyXqJAX+Jqdvs8r8gKpsI/1m0LeJLyQYTf/WLrBT1Q==", + "license": "MIT", + "engines": { + "node": ">= 20" + }, + "optionalDependencies": { + "@tailwindcss/oxide-android-arm64": "4.2.4", + "@tailwindcss/oxide-darwin-arm64": "4.2.4", + "@tailwindcss/oxide-darwin-x64": "4.2.4", + "@tailwindcss/oxide-freebsd-x64": "4.2.4", + "@tailwindcss/oxide-linux-arm-gnueabihf": "4.2.4", + "@tailwindcss/oxide-linux-arm64-gnu": "4.2.4", + "@tailwindcss/oxide-linux-arm64-musl": "4.2.4", + "@tailwindcss/oxide-linux-x64-gnu": "4.2.4", + "@tailwindcss/oxide-linux-x64-musl": "4.2.4", + "@tailwindcss/oxide-wasm32-wasi": "4.2.4", + "@tailwindcss/oxide-win32-arm64-msvc": "4.2.4", + "@tailwindcss/oxide-win32-x64-msvc": "4.2.4" + } + }, + "node_modules/@tailwindcss/oxide-android-arm64": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.2.4.tgz", + "integrity": "sha512-e7MOr1SAn9U8KlZzPi1ZXGZHeC5anY36qjNwmZv9pOJ8E4Q6jmD1vyEHkQFmNOIN7twGPEMXRHmitN4zCMN03g==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-darwin-arm64": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.2.4.tgz", + "integrity": "sha512-tSC/Kbqpz/5/o/C2sG7QvOxAKqyd10bq+ypZNf+9Fi2TvbVbv1zNpcEptcsU7DPROaSbVgUXmrzKhurFvo5eDg==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-darwin-x64": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.2.4.tgz", + "integrity": "sha512-yPyUXn3yO/ufR6+Kzv0t4fCg2qNr90jxXc5QqBpjlPNd0NqyDXcmQb/6weunH/MEDXW5dhyEi+agTDiqa3WsGg==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-freebsd-x64": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.2.4.tgz", + "integrity": "sha512-BoMIB4vMQtZsXdGLVc2z+P9DbETkiopogfWZKbWwM8b/1Vinbs4YcUwo+kM/KeLkX3Ygrf4/PsRndKaYhS8Eiw==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.2.4.tgz", + "integrity": "sha512-7pIHBLTHYRAlS7V22JNuTh33yLH4VElwKtB3bwchK/UaKUPpQ0lPQiOWcbm4V3WP2I6fNIJ23vABIvoy2izdwA==", + "cpu": [ + "arm" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-linux-arm64-gnu": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.2.4.tgz", + "integrity": "sha512-+E4wxJ0ZGOzSH325reXTWB48l42i93kQqMvDyz5gqfRzRZ7faNhnmvlV4EPGJU3QJM/3Ab5jhJ5pCRUsKn6OQw==", + "cpu": [ + "arm64" + ], + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-linux-arm64-musl": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.2.4.tgz", + "integrity": "sha512-bBADEGAbo4ASnppIziaQJelekCxdMaxisrk+fB7Thit72IBnALp9K6ffA2G4ruj90G9XRS2VQ6q2bCKbfFV82g==", + "cpu": [ + "arm64" + ], + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-linux-x64-gnu": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.2.4.tgz", + "integrity": "sha512-7Mx25E4WTfnht0TVRTyC00j3i0M+EeFe7wguMDTlX4mRxafznw0CA8WJkFjWYH5BlgELd1kSjuU2JiPnNZbJDA==", + "cpu": [ + "x64" + ], + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-linux-x64-musl": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.2.4.tgz", + "integrity": "sha512-2wwJRF7nyhOR0hhHoChc04xngV3iS+akccHTGtz965FwF0up4b2lOdo6kI1EbDaEXKgvcrFBYcYQQ/rrnWFVfA==", + "cpu": [ + "x64" + ], + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-wasm32-wasi": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.2.4.tgz", + "integrity": "sha512-FQsqApeor8Fo6gUEklzmaa9994orJZZDBAlQpK2Mq+DslRKFJeD6AjHpBQ0kZFQohVr8o85PPh8eOy86VlSCmw==", + "bundleDependencies": [ + "@napi-rs/wasm-runtime", + "@emnapi/core", + "@emnapi/runtime", + "@tybys/wasm-util", + "@emnapi/wasi-threads", + "tslib" + ], + "cpu": [ + "wasm32" + ], + "license": "MIT", + "optional": true, + "dependencies": { + "@emnapi/core": "^1.8.1", + "@emnapi/runtime": "^1.8.1", + "@emnapi/wasi-threads": "^1.1.0", + "@napi-rs/wasm-runtime": "^1.1.1", + "@tybys/wasm-util": "^0.10.1", + "tslib": "^2.8.1" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@tailwindcss/oxide-win32-arm64-msvc": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.2.4.tgz", + "integrity": "sha512-L9BXqxC4ToVgwMFqj3pmZRqyHEztulpUJzCxUtLjobMCzTPsGt1Fa9enKbOpY2iIyVtaHNeNvAK8ERP/64sqGQ==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-win32-x64-msvc": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.2.4.tgz", + "integrity": "sha512-ESlKG0EpVJQwRjXDDa9rLvhEAh0mhP1sF7sap9dNZT0yyl9SAG6T7gdP09EH0vIv0UNTlo6jPWyujD6559fZvw==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/typography": { + "version": "0.5.19", + "resolved": "https://registry.npmjs.org/@tailwindcss/typography/-/typography-0.5.19.tgz", + "integrity": "sha512-w31dd8HOx3k9vPtcQh5QHP9GwKcgbMp87j58qi6xgiBnFFtKEAgCWnDw4qUT8aHwkCp8bKvb/KGKWWHedP0AAg==", + "license": "MIT", + "dependencies": { + "postcss-selector-parser": "6.0.10" + }, + "peerDependencies": { + "tailwindcss": ">=3.0.0 || insiders || >=4.0.0-alpha.20 || >=4.0.0-beta.1" + } + }, + "node_modules/@tailwindcss/vite": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/@tailwindcss/vite/-/vite-4.2.4.tgz", + "integrity": "sha512-pCvohwOCspk3ZFn6eJzrrX3g4n2JY73H6MmYC87XfGPyTty4YsCjYTMArRZm/zOI8dIt3+EcrLHAFPe5A4bgtw==", + "license": "MIT", + "dependencies": { + "@tailwindcss/node": "4.2.4", + "@tailwindcss/oxide": "4.2.4", + "tailwindcss": "4.2.4" + }, + "peerDependencies": { + "vite": "^5.2.0 || ^6 || ^7 || ^8" + } + }, + "node_modules/@types/debug": { + "version": "4.1.13", + "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.13.tgz", + "integrity": "sha512-KSVgmQmzMwPlmtljOomayoR89W4FynCAi3E8PPs7vmDVPe84hT+vGPKkJfThkmXs0x0jAaa9U8uW8bbfyS2fWw==", + "license": "MIT", + "dependencies": { + "@types/ms": "*" + } + }, + "node_modules/@types/estree": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", + "license": "MIT" + }, + "node_modules/@types/hast": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz", + "integrity": "sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==", + "license": "MIT", + "dependencies": { + "@types/unist": "*" + } + }, + "node_modules/@types/mdast": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz", + "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==", + "license": "MIT", + "dependencies": { + "@types/unist": "*" + } + }, + "node_modules/@types/ms": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@types/ms/-/ms-2.1.0.tgz", + "integrity": "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==", + "license": "MIT" + }, + "node_modules/@types/nlcst": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/nlcst/-/nlcst-2.0.3.tgz", + "integrity": "sha512-vSYNSDe6Ix3q+6Z7ri9lyWqgGhJTmzRjZRqyq15N0Z/1/UnVsno9G/N40NBijoYx2seFDIl0+B2mgAb9mezUCA==", + "license": "MIT", + "dependencies": { + "@types/unist": "*" + } + }, + "node_modules/@types/unist": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz", + "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==", + "license": "MIT" + }, + "node_modules/@ungap/structured-clone": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.0.tgz", + "integrity": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==", + "license": "ISC" + }, + "node_modules/@volar/kit": { + "version": "2.4.28", + "resolved": "https://registry.npmjs.org/@volar/kit/-/kit-2.4.28.tgz", + "integrity": "sha512-cKX4vK9dtZvDRaAzeoUdaAJEew6IdxHNCRrdp5Kvcl6zZOqb6jTOfk3kXkIkG3T7oTFXguEMt5+9ptyqYR84Pg==", + "license": "MIT", + "dependencies": { + "@volar/language-service": "2.4.28", + "@volar/typescript": "2.4.28", + "typesafe-path": "^0.2.2", + "vscode-languageserver-textdocument": "^1.0.11", + "vscode-uri": "^3.0.8" + }, + "peerDependencies": { + "typescript": "*" + } + }, + "node_modules/@volar/language-core": { + "version": "2.4.28", + "resolved": "https://registry.npmjs.org/@volar/language-core/-/language-core-2.4.28.tgz", + "integrity": "sha512-w4qhIJ8ZSitgLAkVay6AbcnC7gP3glYM3fYwKV3srj8m494E3xtrCv6E+bWviiK/8hs6e6t1ij1s2Endql7vzQ==", + "license": "MIT", + "dependencies": { + "@volar/source-map": "2.4.28" + } + }, + "node_modules/@volar/language-server": { + "version": "2.4.28", + "resolved": "https://registry.npmjs.org/@volar/language-server/-/language-server-2.4.28.tgz", + "integrity": "sha512-NqcLnE5gERKuS4PUFwlhMxf6vqYo7hXtbMFbViXcbVkbZ905AIVWhnSo0ZNBC2V127H1/2zP7RvVOVnyITFfBw==", + "license": "MIT", + "dependencies": { + "@volar/language-core": "2.4.28", + "@volar/language-service": "2.4.28", + "@volar/typescript": "2.4.28", + "path-browserify": "^1.0.1", + "request-light": "^0.7.0", + "vscode-languageserver": "^9.0.1", + "vscode-languageserver-protocol": "^3.17.5", + "vscode-languageserver-textdocument": "^1.0.11", + "vscode-uri": "^3.0.8" + } + }, + "node_modules/@volar/language-service": { + "version": "2.4.28", + "resolved": "https://registry.npmjs.org/@volar/language-service/-/language-service-2.4.28.tgz", + "integrity": "sha512-Rh/wYCZJrI5vCwMk9xyw/Z+MsWxlJY1rmMZPsxUoJKfzIRjS/NF1NmnuEcrMbEVGja00aVpCsInJfixQTMdvLw==", + "license": "MIT", + "dependencies": { + "@volar/language-core": "2.4.28", + "vscode-languageserver-protocol": "^3.17.5", + "vscode-languageserver-textdocument": "^1.0.11", + "vscode-uri": "^3.0.8" + } + }, + "node_modules/@volar/source-map": { + "version": "2.4.28", + "resolved": "https://registry.npmjs.org/@volar/source-map/-/source-map-2.4.28.tgz", + "integrity": "sha512-yX2BDBqJkRXfKw8my8VarTyjv48QwxdJtvRgUpNE5erCsgEUdI2DsLbpa+rOQVAJYshY99szEcRDmyHbF10ggQ==", + "license": "MIT" + }, + "node_modules/@volar/typescript": { + "version": "2.4.28", + "resolved": "https://registry.npmjs.org/@volar/typescript/-/typescript-2.4.28.tgz", + "integrity": "sha512-Ja6yvWrbis2QtN4ClAKreeUZPVYMARDYZl9LMEv1iQ1QdepB6wn0jTRxA9MftYmYa4DQ4k/DaSZpFPUfxl8giw==", + "license": "MIT", + "dependencies": { + "@volar/language-core": "2.4.28", + "path-browserify": "^1.0.1", + "vscode-uri": "^3.0.8" + } + }, + "node_modules/@vscode/emmet-helper": { + "version": "2.11.0", + "resolved": "https://registry.npmjs.org/@vscode/emmet-helper/-/emmet-helper-2.11.0.tgz", + "integrity": "sha512-QLxjQR3imPZPQltfbWRnHU6JecWTF1QSWhx3GAKQpslx7y3Dp6sIIXhKjiUJ/BR9FX8PVthjr9PD6pNwOJfAzw==", + "license": "MIT", + "dependencies": { + "emmet": "^2.4.3", + "jsonc-parser": "^2.3.0", + "vscode-languageserver-textdocument": "^1.0.1", + "vscode-languageserver-types": "^3.15.1", + "vscode-uri": "^3.0.8" + } + }, + "node_modules/@vscode/emmet-helper/node_modules/jsonc-parser": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-2.3.1.tgz", + "integrity": "sha512-H8jvkz1O50L3dMZCsLqiuB2tA7muqbSg1AtGEkN0leAqGjsUzDJir3Zwr02BhqdcITPg3ei3mZ+HjMocAknhhg==", + "license": "MIT" + }, + "node_modules/@vscode/l10n": { + "version": "0.0.18", + "resolved": "https://registry.npmjs.org/@vscode/l10n/-/l10n-0.0.18.tgz", + "integrity": "sha512-KYSIHVmslkaCDyw013pphY+d7x1qV8IZupYfeIfzNA+nsaWHbn5uPuQRvdRFsa9zFzGeudPuoGoZ1Op4jrJXIQ==", + "license": "MIT" + }, + "node_modules/ajv": { + "version": "8.20.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.20.0.tgz", + "integrity": "sha512-Thbli+OlOj+iMPYFBVBfJ3OmCAnaSyNn4M1vz9T6Gka5Jt9ba/HIR56joy65tY6kx/FCF5VXNB819Y7/GUrBGA==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-draft-04": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/ajv-draft-04/-/ajv-draft-04-1.0.0.tgz", + "integrity": "sha512-mv00Te6nmYbRp5DCwclxtt7yV/joXJPGS7nM+97GdxvuttCOfgI3K4U25zboyeX0O+myI8ERluxQe5wljMmVIw==", + "license": "MIT", + "peerDependencies": { + "ajv": "^8.5.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "license": "ISC", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/anymatch/node_modules/picomatch": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.2.tgz", + "integrity": "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==", + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "license": "Python-2.0" + }, + "node_modules/aria-query": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.2.tgz", + "integrity": "sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==", + "license": "Apache-2.0", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/array-iterate": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/array-iterate/-/array-iterate-2.0.1.tgz", + "integrity": "sha512-I1jXZMjAgCMmxT4qxXfPXa6SthSoE8h6gkSI9BGGNv8mP8G/v0blc+qFnZu6K42vTOiuME596QaLO0TP3Lk0xg==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/astro": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/astro/-/astro-6.2.2.tgz", + "integrity": "sha512-zkne2lZU+iTZPBK8F4gbMfrw5f11bT4VXiBxcdFHcPvYyH+Hox7V1sZu97RDpvwmHi+wQ0efKv89KY5744a0jQ==", + "license": "MIT", + "dependencies": { + "@astrojs/compiler": "^4.0.0", + "@astrojs/internal-helpers": "0.9.0", + "@astrojs/markdown-remark": "7.1.1", + "@astrojs/telemetry": "3.3.1", + "@capsizecss/unpack": "^4.0.0", + "@clack/prompts": "^1.1.0", + "@oslojs/encoding": "^1.1.0", + "@rollup/pluginutils": "^5.3.0", + "aria-query": "^5.3.2", + "axobject-query": "^4.1.0", + "ci-info": "^4.4.0", + "clsx": "^2.1.1", + "common-ancestor-path": "^2.0.0", + "cookie": "^1.1.1", + "devalue": "^5.6.3", + "diff": "^8.0.3", + "dset": "^3.1.4", + "es-module-lexer": "^2.0.0", + "esbuild": "^0.27.3", + "flattie": "^1.1.1", + "fontace": "~0.4.1", + "get-tsconfig": "5.0.0-beta.4", + "github-slugger": "^2.0.0", + "html-escaper": "3.0.3", + "http-cache-semantics": "^4.2.0", + "js-yaml": "^4.1.1", + "jsonc-parser": "^3.3.1", + "magic-string": "^0.30.21", + "magicast": "^0.5.2", + "mrmime": "^2.0.1", + "neotraverse": "^0.6.18", + "obug": "^2.1.1", + "p-limit": "^7.3.0", + "p-queue": "^9.1.0", + "package-manager-detector": "^1.6.0", + "piccolore": "^0.1.3", + "picomatch": "^4.0.4", + "rehype": "^13.0.2", + "semver": "^7.7.4", + "shiki": "^4.0.2", + "smol-toml": "^1.6.0", + "svgo": "^4.0.1", + "tinyclip": "^0.1.12", + "tinyexec": "^1.0.4", + "tinyglobby": "^0.2.15", + "ultrahtml": "^1.6.0", + "unifont": "~0.7.4", + "unist-util-visit": "^5.1.0", + "unstorage": "^1.17.5", + "vfile": "^6.0.3", + "vite": "^7.3.2", + "vitefu": "^1.1.2", + "xxhash-wasm": "^1.1.0", + "yargs-parser": "^22.0.0", + "zod": "^4.3.6" + }, + "bin": { + "astro": "bin/astro.mjs" + }, + "engines": { + "node": ">=22.12.0", + "npm": ">=9.6.5", + "pnpm": ">=7.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/astrodotbuild" + }, + "optionalDependencies": { + "sharp": "^0.34.0" + } + }, + "node_modules/astro/node_modules/@astrojs/compiler": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@astrojs/compiler/-/compiler-4.0.0.tgz", + "integrity": "sha512-eouss7G8ygdZqHuke033VMcVw5HTZUu+PXd/h06DGDUg/jt5btPYPqh66ENWw/mU78rBrf/oeC4oqoBwMtDMNA==", + "license": "MIT" + }, + "node_modules/axobject-query": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-4.1.0.tgz", + "integrity": "sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==", + "license": "Apache-2.0", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/bail": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz", + "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", + "license": "ISC" + }, + "node_modules/ccount": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz", + "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/character-entities": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz", + "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/character-entities-html4": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz", + "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/character-entities-legacy": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz", + "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/chokidar": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz", + "integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==", + "license": "MIT", + "dependencies": { + "readdirp": "^4.0.1" + }, + "engines": { + "node": ">= 14.16.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/ci-info": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-4.4.0.tgz", + "integrity": "sha512-77PSwercCZU2Fc4sX94eF8k8Pxte6JAwL4/ICZLFjJLqegs7kCuAsqqj/70NQF6TvDpgFjkubQB2FW2ZZddvQg==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "license": "ISC", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/clsx": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz", + "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/comma-separated-tokens": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz", + "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/commander": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-11.1.0.tgz", + "integrity": "sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==", + "license": "MIT", + "engines": { + "node": ">=16" + } + }, + "node_modules/common-ancestor-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/common-ancestor-path/-/common-ancestor-path-2.0.0.tgz", + "integrity": "sha512-dnN3ibLeoRf2HNC+OlCiNc5d2zxbLJXOtiZUudNFSXZrNSydxcCsSpRzXwfu7BBWCIfHPw+xTayeBvJCP/D8Ng==", + "license": "BlueOak-1.0.0", + "engines": { + "node": ">= 18" + } + }, + "node_modules/cookie": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-1.1.1.tgz", + "integrity": "sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ==", + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/cookie-es": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/cookie-es/-/cookie-es-1.2.3.tgz", + "integrity": "sha512-lXVyvUvrNXblMqzIRrxHb57UUVmqsSWlxqt3XIjCkUP0wDAf6uicO6KMbEgYrMNtEvWgWHwe42CKxPu9MYAnWw==", + "license": "MIT" + }, + "node_modules/crossws": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/crossws/-/crossws-0.3.5.tgz", + "integrity": "sha512-ojKiDvcmByhwa8YYqbQI/hg7MEU0NC03+pSdEq4ZUnZR9xXpwk7E43SMNGkn+JxJGPFtNvQ48+vV2p+P1ml5PA==", + "license": "MIT", + "dependencies": { + "uncrypto": "^0.1.3" + } + }, + "node_modules/css-select": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.2.2.tgz", + "integrity": "sha512-TizTzUddG/xYLA3NXodFM0fSbNizXjOKhqiQQwvhlspadZokn1KDy0NZFS0wuEubIYAV5/c1/lAr0TaaFXEXzw==", + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.1.0", + "domhandler": "^5.0.2", + "domutils": "^3.0.1", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/css-tree": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-3.2.1.tgz", + "integrity": "sha512-X7sjQzceUhu1u7Y/ylrRZFU2FS6LRiFVp6rKLPg23y3x3c3DOKAwuXGDp+PAGjh6CSnCjYeAul8pcT8bAl+lSA==", + "license": "MIT", + "dependencies": { + "mdn-data": "2.27.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" + } + }, + "node_modules/css-what": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.2.2.tgz", + "integrity": "sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==", + "license": "BSD-2-Clause", + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "license": "MIT", + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/csso": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/csso/-/csso-5.0.5.tgz", + "integrity": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==", + "license": "MIT", + "dependencies": { + "css-tree": "~2.2.0" + }, + "engines": { + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/csso/node_modules/css-tree": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.2.1.tgz", + "integrity": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==", + "license": "MIT", + "dependencies": { + "mdn-data": "2.0.28", + "source-map-js": "^1.0.1" + }, + "engines": { + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/csso/node_modules/mdn-data": { + "version": "2.0.28", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.28.tgz", + "integrity": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==", + "license": "CC0-1.0" + }, + "node_modules/debug": { + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decode-named-character-reference": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.3.0.tgz", + "integrity": "sha512-GtpQYB283KrPp6nRw50q3U9/VfOutZOe103qlN7BPP6Ad27xYnOIWv4lPzo8HCAL+mMZofJ9KEy30fq6MfaK6Q==", + "license": "MIT", + "dependencies": { + "character-entities": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/defu": { + "version": "6.1.7", + "resolved": "https://registry.npmjs.org/defu/-/defu-6.1.7.tgz", + "integrity": "sha512-7z22QmUWiQ/2d0KkdYmANbRUVABpZ9SNYyH5vx6PZ+nE5bcC0l7uFvEfHlyld/HcGBFTL536ClDt3DEcSlEJAQ==", + "license": "MIT" + }, + "node_modules/dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/destr": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/destr/-/destr-2.0.5.tgz", + "integrity": "sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA==", + "license": "MIT" + }, + "node_modules/detect-libc": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz", + "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==", + "license": "Apache-2.0", + "engines": { + "node": ">=8" + } + }, + "node_modules/devalue": { + "version": "5.8.0", + "resolved": "https://registry.npmjs.org/devalue/-/devalue-5.8.0.tgz", + "integrity": "sha512-2zA9pFEsnp7vWBZbXF5JAgAq0fsUIt/1XPbRiAmRV3lp/2C3upzH+sADiyy66aFCihoLEsrQHxNM5w1gIDfsBg==", + "license": "MIT" + }, + "node_modules/devlop": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz", + "integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==", + "license": "MIT", + "dependencies": { + "dequal": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/diff": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/diff/-/diff-8.0.4.tgz", + "integrity": "sha512-DPi0FmjiSU5EvQV0++GFDOJ9ASQUVFh5kD+OzOnYdi7n3Wpm9hWWGfB/O2blfHcMVTL5WkQXSnRiK9makhrcnw==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.3.1" + } + }, + "node_modules/dlv": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", + "license": "MIT" + }, + "node_modules/dom-serializer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", + "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", + "license": "MIT", + "dependencies": { + "domelementtype": "^2.3.0", + "domhandler": "^5.0.2", + "entities": "^4.2.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/dom-serializer/node_modules/entities": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "license": "BSD-2-Clause" + }, + "node_modules/domhandler": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", + "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", + "license": "BSD-2-Clause", + "dependencies": { + "domelementtype": "^2.3.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/domutils": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.2.2.tgz", + "integrity": "sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==", + "license": "BSD-2-Clause", + "dependencies": { + "dom-serializer": "^2.0.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "node_modules/dset": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/dset/-/dset-3.1.4.tgz", + "integrity": "sha512-2QF/g9/zTaPDc3BjNcVTGoBbXBgYfMTTceLaYcFJ/W9kggFUkhxD/hMEeuLKbugyef9SqAx8cpgwlIP/jinUTA==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/emmet": { + "version": "2.4.11", + "resolved": "https://registry.npmjs.org/emmet/-/emmet-2.4.11.tgz", + "integrity": "sha512-23QPJB3moh/U9sT4rQzGgeyyGIrcM+GH5uVYg2C6wZIxAIJq7Ng3QLT79tl8FUwDXhyq9SusfknOrofAKqvgyQ==", + "license": "MIT", + "workspaces": [ + "./packages/scanner", + "./packages/abbreviation", + "./packages/css-abbreviation", + "./" + ], + "dependencies": { + "@emmetio/abbreviation": "^2.3.3", + "@emmetio/css-abbreviation": "^2.1.8" + } + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, + "node_modules/enhanced-resolve": { + "version": "5.21.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.21.0.tgz", + "integrity": "sha512-otxSQPw4lkOZWkHpB3zaEQs6gWYEsmX4xQF68ElXC/TWvGxGMSGOvoNbaLXm6/cS/fSfHtsEdw90y20PCd+sCA==", + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.3.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/entities": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/entities/-/entities-6.0.1.tgz", + "integrity": "sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/es-module-lexer": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-2.1.0.tgz", + "integrity": "sha512-n27zTYMjYu1aj4MjCWzSP7G9r75utsaoc8m61weK+W8JMBGGQybd43GstCXZ3WNmSFtGT9wi59qQTW6mhTR5LQ==", + "license": "MIT" + }, + "node_modules/esbuild": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.7.tgz", + "integrity": "sha512-IxpibTjyVnmrIQo5aqNpCgoACA/dTKLTlhMHihVHhdkxKyPO1uBBthumT0rdHmcsk9uMonIWS0m4FljWzILh3w==", + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.27.7", + "@esbuild/android-arm": "0.27.7", + "@esbuild/android-arm64": "0.27.7", + "@esbuild/android-x64": "0.27.7", + "@esbuild/darwin-arm64": "0.27.7", + "@esbuild/darwin-x64": "0.27.7", + "@esbuild/freebsd-arm64": "0.27.7", + "@esbuild/freebsd-x64": "0.27.7", + "@esbuild/linux-arm": "0.27.7", + "@esbuild/linux-arm64": "0.27.7", + "@esbuild/linux-ia32": "0.27.7", + "@esbuild/linux-loong64": "0.27.7", + "@esbuild/linux-mips64el": "0.27.7", + "@esbuild/linux-ppc64": "0.27.7", + "@esbuild/linux-riscv64": "0.27.7", + "@esbuild/linux-s390x": "0.27.7", + "@esbuild/linux-x64": "0.27.7", + "@esbuild/netbsd-arm64": "0.27.7", + "@esbuild/netbsd-x64": "0.27.7", + "@esbuild/openbsd-arm64": "0.27.7", + "@esbuild/openbsd-x64": "0.27.7", + "@esbuild/openharmony-arm64": "0.27.7", + "@esbuild/sunos-x64": "0.27.7", + "@esbuild/win32-arm64": "0.27.7", + "@esbuild/win32-ia32": "0.27.7", + "@esbuild/win32-x64": "0.27.7" + } + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", + "license": "MIT" + }, + "node_modules/eventemitter3": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.4.tgz", + "integrity": "sha512-mlsTRyGaPBjPedk6Bvw+aqbsXDtoAyAzm5MO7JgU+yVRyMQ5O8bD4Kcci7BS85f93veegeCPkL8R4GLClnjLFw==", + "license": "MIT" + }, + "node_modules/extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "license": "MIT" + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "license": "MIT" + }, + "node_modules/fast-string-truncated-width": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/fast-string-truncated-width/-/fast-string-truncated-width-3.0.3.tgz", + "integrity": "sha512-0jjjIEL6+0jag3l2XWWizO64/aZVtpiGE3t0Zgqxv0DPuxiMjvB3M24fCyhZUO4KomJQPj3LTSUnDP3GpdwC0g==", + "license": "MIT" + }, + "node_modules/fast-string-width": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/fast-string-width/-/fast-string-width-3.0.2.tgz", + "integrity": "sha512-gX8LrtNEI5hq8DVUfRQMbr5lpaS4nMIWV+7XEbXk2b8kiQIizgnlr12B4dA3ZEx3308ze0O4Q1R+cHts8kyUJg==", + "license": "MIT", + "dependencies": { + "fast-string-truncated-width": "^3.0.2" + } + }, + "node_modules/fast-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.2.tgz", + "integrity": "sha512-rVjf7ArG3LTk+FS6Yw81V1DLuZl1bRbNrev6Tmd/9RaroeeRRJhAt7jg/6YFxbvAQXUCavSoZhPPj6oOx+5KjQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fastify" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/fastify" + } + ], + "license": "BSD-3-Clause" + }, + "node_modules/fast-wrap-ansi": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/fast-wrap-ansi/-/fast-wrap-ansi-0.2.0.tgz", + "integrity": "sha512-rLV8JHxTyhVmFYhBJuMujcrHqOT2cnO5Zxj37qROj23CP39GXubJRBUFF0z8KFK77Uc0SukZUf7JZhsVEQ6n8w==", + "license": "MIT", + "dependencies": { + "fast-string-width": "^3.0.2" + } + }, + "node_modules/fdir": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", + "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", + "license": "MIT", + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "picomatch": "^3 || ^4" + }, + "peerDependenciesMeta": { + "picomatch": { + "optional": true + } + } + }, + "node_modules/flattie": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/flattie/-/flattie-1.1.1.tgz", + "integrity": "sha512-9UbaD6XdAL97+k/n+N7JwX46K/M6Zc6KcFYskrYL8wbBV/Uyk0CTAMY0VT+qiK5PM7AIc9aTWYtq65U7T+aCNQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/fontace": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/fontace/-/fontace-0.4.1.tgz", + "integrity": "sha512-lDMvbAzSnHmbYMTEld5qdtvNH2/pWpICOqpean9IgC7vUbUJc3k+k5Dokp85CegamqQpFbXf0rAVkbzpyTA8aw==", + "license": "MIT", + "dependencies": { + "fontkitten": "^1.0.2" + } + }, + "node_modules/fontkitten": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/fontkitten/-/fontkitten-1.0.3.tgz", + "integrity": "sha512-Wp1zXWPVUPBmfoa3Cqc9ctaKuzKAV6uLstRqlR56kSjplf5uAce+qeyYym7F+PHbGTk+tCEdkCW6RD7DX/gBZw==", + "license": "MIT", + "dependencies": { + "tiny-inflate": "^1.0.3" + }, + "engines": { + "node": ">=20" + } + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "license": "ISC", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-tsconfig": { + "version": "5.0.0-beta.4", + "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-5.0.0-beta.4.tgz", + "integrity": "sha512-7nF7C9fIPFEMHgEMEfgIlO9wDdZ8CyHw27rWciFZfHvHDReIiPhsYuzPRXsfvBCqFy1l8RRyyWV7QLM+ZhUJsQ==", + "license": "MIT", + "dependencies": { + "resolve-pkg-maps": "^1.0.0" + }, + "engines": { + "node": ">=20.20.0" + }, + "funding": { + "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" + } + }, + "node_modules/github-slugger": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/github-slugger/-/github-slugger-2.0.0.tgz", + "integrity": "sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==", + "license": "ISC" + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "license": "ISC" + }, + "node_modules/h3": { + "version": "1.15.11", + "resolved": "https://registry.npmjs.org/h3/-/h3-1.15.11.tgz", + "integrity": "sha512-L3THSe2MPeBwgIZVSH5zLdBBU90TOxarvhK9d04IDY2AmVS8j2Jz2LIWtwsGOU3lu2I5jCN7FNvVfY2+XyF+mg==", + "license": "MIT", + "dependencies": { + "cookie-es": "^1.2.3", + "crossws": "^0.3.5", + "defu": "^6.1.6", + "destr": "^2.0.5", + "iron-webcrypto": "^1.2.1", + "node-mock-http": "^1.0.4", + "radix3": "^1.1.2", + "ufo": "^1.6.3", + "uncrypto": "^0.1.3" + } + }, + "node_modules/hast-util-from-html": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/hast-util-from-html/-/hast-util-from-html-2.0.3.tgz", + "integrity": "sha512-CUSRHXyKjzHov8yKsQjGOElXy/3EKpyX56ELnkHH34vDVw1N1XSQ1ZcAvTyAPtGqLTuKP/uxM+aLkSPqF/EtMw==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "devlop": "^1.1.0", + "hast-util-from-parse5": "^8.0.0", + "parse5": "^7.0.0", + "vfile": "^6.0.0", + "vfile-message": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-from-parse5": { + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/hast-util-from-parse5/-/hast-util-from-parse5-8.0.3.tgz", + "integrity": "sha512-3kxEVkEKt0zvcZ3hCRYI8rqrgwtlIOFMWkbclACvjlDw8Li9S2hk/d51OI0nr/gIpdMHNepwgOKqZ/sy0Clpyg==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "@types/unist": "^3.0.0", + "devlop": "^1.0.0", + "hastscript": "^9.0.0", + "property-information": "^7.0.0", + "vfile": "^6.0.0", + "vfile-location": "^5.0.0", + "web-namespaces": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-is-element": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/hast-util-is-element/-/hast-util-is-element-3.0.0.tgz", + "integrity": "sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-parse-selector": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-4.0.0.tgz", + "integrity": "sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-raw": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/hast-util-raw/-/hast-util-raw-9.1.0.tgz", + "integrity": "sha512-Y8/SBAHkZGoNkpzqqfCldijcuUKh7/su31kEBp67cFY09Wy0mTRgtsLYsiIxMJxlu0f6AA5SUTbDR8K0rxnbUw==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "@types/unist": "^3.0.0", + "@ungap/structured-clone": "^1.0.0", + "hast-util-from-parse5": "^8.0.0", + "hast-util-to-parse5": "^8.0.0", + "html-void-elements": "^3.0.0", + "mdast-util-to-hast": "^13.0.0", + "parse5": "^7.0.0", + "unist-util-position": "^5.0.0", + "unist-util-visit": "^5.0.0", + "vfile": "^6.0.0", + "web-namespaces": "^2.0.0", + "zwitch": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-to-html": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/hast-util-to-html/-/hast-util-to-html-9.0.5.tgz", + "integrity": "sha512-OguPdidb+fbHQSU4Q4ZiLKnzWo8Wwsf5bZfbvu7//a9oTYoqD/fWpe96NuHkoS9h0ccGOTe0C4NGXdtS0iObOw==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "@types/unist": "^3.0.0", + "ccount": "^2.0.0", + "comma-separated-tokens": "^2.0.0", + "hast-util-whitespace": "^3.0.0", + "html-void-elements": "^3.0.0", + "mdast-util-to-hast": "^13.0.0", + "property-information": "^7.0.0", + "space-separated-tokens": "^2.0.0", + "stringify-entities": "^4.0.0", + "zwitch": "^2.0.4" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-to-parse5": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/hast-util-to-parse5/-/hast-util-to-parse5-8.0.1.tgz", + "integrity": "sha512-MlWT6Pjt4CG9lFCjiz4BH7l9wmrMkfkJYCxFwKQic8+RTZgWPuWxwAfjJElsXkex7DJjfSJsQIt931ilUgmwdA==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "comma-separated-tokens": "^2.0.0", + "devlop": "^1.0.0", + "property-information": "^7.0.0", + "space-separated-tokens": "^2.0.0", + "web-namespaces": "^2.0.0", + "zwitch": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-to-text": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/hast-util-to-text/-/hast-util-to-text-4.0.2.tgz", + "integrity": "sha512-KK6y/BN8lbaq654j7JgBydev7wuNMcID54lkRav1P0CaE1e47P72AWWPiGKXTJU271ooYzcvTAn/Zt0REnvc7A==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "@types/unist": "^3.0.0", + "hast-util-is-element": "^3.0.0", + "unist-util-find-after": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-whitespace": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz", + "integrity": "sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hastscript": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/hastscript/-/hastscript-9.0.1.tgz", + "integrity": "sha512-g7df9rMFX/SPi34tyGCyUBREQoKkapwdY/T04Qn9TDWfHhAYt4/I0gMVirzK5wEzeUqIjEB+LXC/ypb7Aqno5w==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "comma-separated-tokens": "^2.0.0", + "hast-util-parse-selector": "^4.0.0", + "property-information": "^7.0.0", + "space-separated-tokens": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/html-escaper": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-3.0.3.tgz", + "integrity": "sha512-RuMffC89BOWQoY0WKGpIhn5gX3iI54O6nRA0yC124NYVtzjmFWBIiFd8M0x+ZdX0P9R4lADg1mgP8C7PxGOWuQ==", + "license": "MIT" + }, + "node_modules/html-void-elements": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/html-void-elements/-/html-void-elements-3.0.0.tgz", + "integrity": "sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/http-cache-semantics": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.2.0.tgz", + "integrity": "sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==", + "license": "BSD-2-Clause" + }, + "node_modules/iron-webcrypto": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/iron-webcrypto/-/iron-webcrypto-1.2.1.tgz", + "integrity": "sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/brc-dd" + } + }, + "node_modules/is-docker": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-4.0.0.tgz", + "integrity": "sha512-LHE+wROyG/Y/0ZnbktRCoTix2c1RhgWaZraMZ8o1Q7zCh0VSrICJQO5oqIIISrcSBtrXv0o233w1IYwsWCjTzA==", + "license": "MIT", + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": ">=20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-inside-container": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz", + "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", + "license": "MIT", + "dependencies": { + "is-docker": "^3.0.0" + }, + "bin": { + "is-inside-container": "cli.js" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-inside-container/node_modules/is-docker": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", + "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", + "license": "MIT", + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-plain-obj": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", + "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-wsl": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-3.1.1.tgz", + "integrity": "sha512-e6rvdUCiQCAuumZslxRJWR/Doq4VpPR82kqclvcS0efgt430SlGIk05vdCN58+VrzgtIcfNODjozVielycD4Sw==", + "license": "MIT", + "dependencies": { + "is-inside-container": "^1.0.0" + }, + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jiti": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.7.0.tgz", + "integrity": "sha512-AC/7JofJvZGrrneWNaEnJeOLUx+JlGt7tNa0wZiRPT4MY1wmfKjt2+6O2p2uz2+skll8OZZmJMNqeke7kKbNgQ==", + "license": "MIT", + "bin": { + "jiti": "lib/jiti-cli.mjs" + } + }, + "node_modules/js-yaml": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz", + "integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==", + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "license": "MIT" + }, + "node_modules/jsonc-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.3.1.tgz", + "integrity": "sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==", + "license": "MIT" + }, + "node_modules/kleur": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", + "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/lightningcss": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.32.0.tgz", + "integrity": "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==", + "license": "MPL-2.0", + "dependencies": { + "detect-libc": "^2.0.3" + }, + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + }, + "optionalDependencies": { + "lightningcss-android-arm64": "1.32.0", + "lightningcss-darwin-arm64": "1.32.0", + "lightningcss-darwin-x64": "1.32.0", + "lightningcss-freebsd-x64": "1.32.0", + "lightningcss-linux-arm-gnueabihf": "1.32.0", + "lightningcss-linux-arm64-gnu": "1.32.0", + "lightningcss-linux-arm64-musl": "1.32.0", + "lightningcss-linux-x64-gnu": "1.32.0", + "lightningcss-linux-x64-musl": "1.32.0", + "lightningcss-win32-arm64-msvc": "1.32.0", + "lightningcss-win32-x64-msvc": "1.32.0" + } + }, + "node_modules/lightningcss-android-arm64": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz", + "integrity": "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==", + "cpu": [ + "arm64" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-darwin-arm64": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz", + "integrity": "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==", + "cpu": [ + "arm64" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-darwin-x64": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz", + "integrity": "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==", + "cpu": [ + "x64" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-freebsd-x64": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz", + "integrity": "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==", + "cpu": [ + "x64" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-arm-gnueabihf": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz", + "integrity": "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==", + "cpu": [ + "arm" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-arm64-gnu": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz", + "integrity": "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==", + "cpu": [ + "arm64" + ], + "libc": [ + "glibc" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-arm64-musl": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz", + "integrity": "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==", + "cpu": [ + "arm64" + ], + "libc": [ + "musl" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-x64-gnu": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz", + "integrity": "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==", + "cpu": [ + "x64" + ], + "libc": [ + "glibc" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-x64-musl": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz", + "integrity": "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==", + "cpu": [ + "x64" + ], + "libc": [ + "musl" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-win32-arm64-msvc": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz", + "integrity": "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==", + "cpu": [ + "arm64" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-win32-x64-msvc": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz", + "integrity": "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==", + "cpu": [ + "x64" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/longest-streak": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz", + "integrity": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/lru-cache": { + "version": "11.3.6", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.3.6.tgz", + "integrity": "sha512-Gf/KoL3C/MlI7Bt0PGI9I+TeTC/I6r/csU58N4BSNc4lppLBeKsOdFYkK+dX0ABDUMJNfCHTyPpzwwO21Awd3A==", + "license": "BlueOak-1.0.0", + "engines": { + "node": "20 || >=22" + } + }, + "node_modules/magic-string": { + "version": "0.30.21", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz", + "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==", + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.5" + } + }, + "node_modules/magicast": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/magicast/-/magicast-0.5.2.tgz", + "integrity": "sha512-E3ZJh4J3S9KfwdjZhe2afj6R9lGIN5Pher1pF39UGrXRqq/VDaGVIGN13BjHd2u8B61hArAGOnso7nBOouW3TQ==", + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.29.0", + "@babel/types": "^7.29.0", + "source-map-js": "^1.2.1" + } + }, + "node_modules/markdown-table": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-3.0.4.tgz", + "integrity": "sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/marked": { + "version": "18.0.3", + "resolved": "https://registry.npmjs.org/marked/-/marked-18.0.3.tgz", + "integrity": "sha512-7VT90JOkDeaRWpfjOReRGPEKn0ecdARBkDGL+tT1wZY0efPPqkUxLUSmzy/C7TIylQYJC9STISEsCHrqb/7VIA==", + "license": "MIT", + "bin": { + "marked": "bin/marked.js" + }, + "engines": { + "node": ">= 20" + } + }, + "node_modules/mdast-util-definitions": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-6.0.0.tgz", + "integrity": "sha512-scTllyX6pnYNZH/AIp/0ePz6s4cZtARxImwoPJ7kS42n+MnVsI4XbnG6d4ibehRIldYMWM2LD7ImQblVhUejVQ==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "@types/unist": "^3.0.0", + "unist-util-visit": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-find-and-replace": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/mdast-util-find-and-replace/-/mdast-util-find-and-replace-3.0.2.tgz", + "integrity": "sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "escape-string-regexp": "^5.0.0", + "unist-util-is": "^6.0.0", + "unist-util-visit-parents": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-from-markdown": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.3.tgz", + "integrity": "sha512-W4mAWTvSlKvf8L6J+VN9yLSqQ9AOAAvHuoDAmPkz4dHf553m5gVj2ejadHJhoJmcmxEnOv6Pa8XJhpxE93kb8Q==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "@types/unist": "^3.0.0", + "decode-named-character-reference": "^1.0.0", + "devlop": "^1.0.0", + "mdast-util-to-string": "^4.0.0", + "micromark": "^4.0.0", + "micromark-util-decode-numeric-character-reference": "^2.0.0", + "micromark-util-decode-string": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0", + "unist-util-stringify-position": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm/-/mdast-util-gfm-3.1.0.tgz", + "integrity": "sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==", + "license": "MIT", + "dependencies": { + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-gfm-autolink-literal": "^2.0.0", + "mdast-util-gfm-footnote": "^2.0.0", + "mdast-util-gfm-strikethrough": "^2.0.0", + "mdast-util-gfm-table": "^2.0.0", + "mdast-util-gfm-task-list-item": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-autolink-literal": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-2.0.1.tgz", + "integrity": "sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "ccount": "^2.0.0", + "devlop": "^1.0.0", + "mdast-util-find-and-replace": "^3.0.0", + "micromark-util-character": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-footnote": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-2.1.0.tgz", + "integrity": "sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "devlop": "^1.1.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-strikethrough": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-2.0.0.tgz", + "integrity": "sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-table": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-table/-/mdast-util-gfm-table-2.0.0.tgz", + "integrity": "sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "devlop": "^1.0.0", + "markdown-table": "^3.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-task-list-item": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-2.0.0.tgz", + "integrity": "sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "devlop": "^1.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-phrasing": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-4.1.0.tgz", + "integrity": "sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "unist-util-is": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-hast": { + "version": "13.2.1", + "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-13.2.1.tgz", + "integrity": "sha512-cctsq2wp5vTsLIcaymblUriiTcZd0CwWtCbLvrOzYCDZoWyMNV8sZ7krj09FSnsiJi3WVsHLM4k6Dq/yaPyCXA==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "@ungap/structured-clone": "^1.0.0", + "devlop": "^1.0.0", + "micromark-util-sanitize-uri": "^2.0.0", + "trim-lines": "^3.0.0", + "unist-util-position": "^5.0.0", + "unist-util-visit": "^5.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-markdown": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.2.tgz", + "integrity": "sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "@types/unist": "^3.0.0", + "longest-streak": "^3.0.0", + "mdast-util-phrasing": "^4.0.0", + "mdast-util-to-string": "^4.0.0", + "micromark-util-classify-character": "^2.0.0", + "micromark-util-decode-string": "^2.0.0", + "unist-util-visit": "^5.0.0", + "zwitch": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz", + "integrity": "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdn-data": { + "version": "2.27.1", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.27.1.tgz", + "integrity": "sha512-9Yubnt3e8A0OKwxYSXyhLymGW4sCufcLG6VdiDdUGVkPhpqLxlvP5vl1983gQjJl3tqbrM731mjaZaP68AgosQ==", + "license": "CC0-1.0" + }, + "node_modules/micromark": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.2.tgz", + "integrity": "sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "@types/debug": "^4.0.0", + "debug": "^4.0.0", + "decode-named-character-reference": "^1.0.0", + "devlop": "^1.0.0", + "micromark-core-commonmark": "^2.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-combine-extensions": "^2.0.0", + "micromark-util-decode-numeric-character-reference": "^2.0.0", + "micromark-util-encode": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-resolve-all": "^2.0.0", + "micromark-util-sanitize-uri": "^2.0.0", + "micromark-util-subtokenize": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-core-commonmark": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.3.tgz", + "integrity": "sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "decode-named-character-reference": "^1.0.0", + "devlop": "^1.0.0", + "micromark-factory-destination": "^2.0.0", + "micromark-factory-label": "^2.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-factory-title": "^2.0.0", + "micromark-factory-whitespace": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-classify-character": "^2.0.0", + "micromark-util-html-tag-name": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-resolve-all": "^2.0.0", + "micromark-util-subtokenize": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-gfm": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm/-/micromark-extension-gfm-3.0.0.tgz", + "integrity": "sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==", + "license": "MIT", + "dependencies": { + "micromark-extension-gfm-autolink-literal": "^2.0.0", + "micromark-extension-gfm-footnote": "^2.0.0", + "micromark-extension-gfm-strikethrough": "^2.0.0", + "micromark-extension-gfm-table": "^2.0.0", + "micromark-extension-gfm-tagfilter": "^2.0.0", + "micromark-extension-gfm-task-list-item": "^2.0.0", + "micromark-util-combine-extensions": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-autolink-literal": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-2.1.0.tgz", + "integrity": "sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==", + "license": "MIT", + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-sanitize-uri": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-footnote": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-2.1.0.tgz", + "integrity": "sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==", + "license": "MIT", + "dependencies": { + "devlop": "^1.0.0", + "micromark-core-commonmark": "^2.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-sanitize-uri": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-strikethrough": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-2.1.0.tgz", + "integrity": "sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==", + "license": "MIT", + "dependencies": { + "devlop": "^1.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-classify-character": "^2.0.0", + "micromark-util-resolve-all": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-table": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-2.1.1.tgz", + "integrity": "sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==", + "license": "MIT", + "dependencies": { + "devlop": "^1.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-tagfilter": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-2.0.0.tgz", + "integrity": "sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==", + "license": "MIT", + "dependencies": { + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-task-list-item": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-2.1.0.tgz", + "integrity": "sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==", + "license": "MIT", + "dependencies": { + "devlop": "^1.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-factory-destination": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz", + "integrity": "sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-factory-label": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz", + "integrity": "sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "devlop": "^1.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-factory-space": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz", + "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-factory-title": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.1.tgz", + "integrity": "sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-factory-whitespace": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz", + "integrity": "sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-character": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", + "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-chunked": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz", + "integrity": "sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/micromark-util-classify-character": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz", + "integrity": "sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-combine-extensions": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz", + "integrity": "sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-chunked": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-decode-numeric-character-reference": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz", + "integrity": "sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/micromark-util-decode-string": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.1.tgz", + "integrity": "sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "decode-named-character-reference": "^1.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-decode-numeric-character-reference": "^2.0.0", + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/micromark-util-encode": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz", + "integrity": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-util-html-tag-name": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz", + "integrity": "sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-util-normalize-identifier": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz", + "integrity": "sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/micromark-util-resolve-all": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz", + "integrity": "sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-sanitize-uri": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz", + "integrity": "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-encode": "^2.0.0", + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/micromark-util-subtokenize": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.1.0.tgz", + "integrity": "sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "devlop": "^1.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-util-types": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz", + "integrity": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/mrmime": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-2.0.1.tgz", + "integrity": "sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==", + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "license": "MIT" + }, + "node_modules/muggle-string": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/muggle-string/-/muggle-string-0.4.1.tgz", + "integrity": "sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==", + "license": "MIT" + }, + "node_modules/nanoid": { + "version": "3.3.12", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.12.tgz", + "integrity": "sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/neotraverse": { + "version": "0.6.18", + "resolved": "https://registry.npmjs.org/neotraverse/-/neotraverse-0.6.18.tgz", + "integrity": "sha512-Z4SmBUweYa09+o6pG+eASabEpP6QkQ70yHj351pQoEXIs8uHbaU2DWVmzBANKgflPa47A50PtB2+NgRpQvr7vA==", + "license": "MIT", + "engines": { + "node": ">= 10" + } + }, + "node_modules/nlcst-to-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/nlcst-to-string/-/nlcst-to-string-4.0.0.tgz", + "integrity": "sha512-YKLBCcUYKAg0FNlOBT6aI91qFmSiFKiluk655WzPF+DDMA02qIyy8uiRqI8QXtcFpEvll12LpL5MXqEmAZ+dcA==", + "license": "MIT", + "dependencies": { + "@types/nlcst": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/node-fetch-native": { + "version": "1.6.7", + "resolved": "https://registry.npmjs.org/node-fetch-native/-/node-fetch-native-1.6.7.tgz", + "integrity": "sha512-g9yhqoedzIUm0nTnTqAQvueMPVOuIY16bqgAJJC8XOOubYFNwz6IER9qs0Gq2Xd0+CecCKFjtdDTMA4u4xG06Q==", + "license": "MIT" + }, + "node_modules/node-mock-http": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/node-mock-http/-/node-mock-http-1.0.4.tgz", + "integrity": "sha512-8DY+kFsDkNXy1sJglUfuODx1/opAGJGyrTuFqEoN90oRc2Vk0ZbD4K2qmKXBBEhZQzdKHIVfEJpDU8Ak2NJEvQ==", + "license": "MIT" + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" + } + }, + "node_modules/obug": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/obug/-/obug-2.1.1.tgz", + "integrity": "sha512-uTqF9MuPraAQ+IsnPf366RG4cP9RtUi7MLO1N3KEc+wb0a6yKpeL0lmk2IB1jY5KHPAlTc6T/JRdC/YqxHNwkQ==", + "funding": [ + "https://github.com/sponsors/sxzz", + "https://opencollective.com/debug" + ], + "license": "MIT" + }, + "node_modules/ofetch": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/ofetch/-/ofetch-1.5.1.tgz", + "integrity": "sha512-2W4oUZlVaqAPAil6FUg/difl6YhqhUR7x2eZY4bQCko22UXg3hptq9KLQdqFClV+Wu85UX7hNtdGTngi/1BxcA==", + "license": "MIT", + "dependencies": { + "destr": "^2.0.5", + "node-fetch-native": "^1.6.7", + "ufo": "^1.6.1" + } + }, + "node_modules/ohash": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/ohash/-/ohash-2.0.11.tgz", + "integrity": "sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==", + "license": "MIT" + }, + "node_modules/oniguruma-parser": { + "version": "0.12.2", + "resolved": "https://registry.npmjs.org/oniguruma-parser/-/oniguruma-parser-0.12.2.tgz", + "integrity": "sha512-6HVa5oIrgMC6aA6WF6XyyqbhRPJrKR02L20+2+zpDtO5QAzGHAUGw5TKQvwi5vctNnRHkJYmjAhRVQF2EKdTQw==", + "license": "MIT" + }, + "node_modules/oniguruma-to-es": { + "version": "4.3.6", + "resolved": "https://registry.npmjs.org/oniguruma-to-es/-/oniguruma-to-es-4.3.6.tgz", + "integrity": "sha512-csuQ9x3Yr0cEIs/Zgx/OEt9iBw9vqIunAPQkx19R/fiMq2oGVTgcMqO/V3Ybqefr1TBvosI6jU539ksaBULJyA==", + "license": "MIT", + "dependencies": { + "oniguruma-parser": "^0.12.2", + "regex": "^6.1.0", + "regex-recursion": "^6.0.2" + } + }, + "node_modules/p-limit": { + "version": "7.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-7.3.0.tgz", + "integrity": "sha512-7cIXg/Z0M5WZRblrsOla88S4wAK+zOQQWeBYfV3qJuJXMr+LnbYjaadrFaS0JILfEDPVqHyKnZ1Z/1d6J9VVUw==", + "license": "MIT", + "dependencies": { + "yocto-queue": "^1.2.1" + }, + "engines": { + "node": ">=20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-queue": { + "version": "9.2.0", + "resolved": "https://registry.npmjs.org/p-queue/-/p-queue-9.2.0.tgz", + "integrity": "sha512-dWgLE8AH0HjQ9fe74pUkKkvzzYT18Inp4zra3lKHnnwqGvcfcUBrvF2EAVX+envufDNBOzpPq/IBUONDbI7+3g==", + "license": "MIT", + "dependencies": { + "eventemitter3": "^5.0.4", + "p-timeout": "^7.0.0" + }, + "engines": { + "node": ">=20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-timeout": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-7.0.1.tgz", + "integrity": "sha512-AxTM2wDGORHGEkPCt8yqxOTMgpfbEHqF51f/5fJCmwFC3C/zNcGT63SymH2ttOAaiIws2zVg4+izQCjrakcwHg==", + "license": "MIT", + "engines": { + "node": ">=20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/package-manager-detector": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/package-manager-detector/-/package-manager-detector-1.6.0.tgz", + "integrity": "sha512-61A5ThoTiDG/C8s8UMZwSorAGwMJ0ERVGj2OjoW5pAalsNOg15+iQiPzrLJ4jhZ1HJzmC2PIHT2oEiH3R5fzNA==", + "license": "MIT" + }, + "node_modules/parse-latin": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/parse-latin/-/parse-latin-7.0.0.tgz", + "integrity": "sha512-mhHgobPPua5kZ98EF4HWiH167JWBfl4pvAIXXdbaVohtK7a6YBOy56kvhCqduqyo/f3yrHFWmqmiMg/BkBkYYQ==", + "license": "MIT", + "dependencies": { + "@types/nlcst": "^2.0.0", + "@types/unist": "^3.0.0", + "nlcst-to-string": "^4.0.0", + "unist-util-modify-children": "^4.0.0", + "unist-util-visit-children": "^3.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/parse5": { + "version": "7.3.0", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.3.0.tgz", + "integrity": "sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==", + "license": "MIT", + "dependencies": { + "entities": "^6.0.0" + }, + "funding": { + "url": "https://github.com/inikulin/parse5?sponsor=1" + } + }, + "node_modules/path-browserify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz", + "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==", + "license": "MIT" + }, + "node_modules/piccolore": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/piccolore/-/piccolore-0.1.3.tgz", + "integrity": "sha512-o8bTeDWjE086iwKrROaDf31K0qC/BENdm15/uH9usSC/uZjJOKb2YGiVHfLY4GhwsERiPI1jmwI2XrA7ACOxVw==", + "license": "ISC" + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz", + "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/postcss": { + "version": "8.5.14", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.14.tgz", + "integrity": "sha512-SoSL4+OSEtR99LHFZQiJLkT59C5B1amGO1NzTwj7TT1qCUgUO6hxOvzkOYxD+vMrXBM3XJIKzokoERdqQq/Zmg==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.11", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.0.10", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz", + "integrity": "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==", + "license": "MIT", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/prettier": { + "version": "3.8.3", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.8.3.tgz", + "integrity": "sha512-7igPTM53cGHMW8xWuVTydi2KO233VFiTNyF5hLJqpilHfmn8C8gPf+PS7dUT64YcXFbiMGZxS9pCSxL/Dxm/Jw==", + "license": "MIT", + "bin": { + "prettier": "bin/prettier.cjs" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "node_modules/prismjs": { + "version": "1.30.0", + "resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.30.0.tgz", + "integrity": "sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/property-information": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/property-information/-/property-information-7.1.0.tgz", + "integrity": "sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/radix3": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/radix3/-/radix3-1.1.2.tgz", + "integrity": "sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==", + "license": "MIT" + }, + "node_modules/readdirp": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.1.2.tgz", + "integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==", + "license": "MIT", + "engines": { + "node": ">= 14.18.0" + }, + "funding": { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/regex/-/regex-6.1.0.tgz", + "integrity": "sha512-6VwtthbV4o/7+OaAF9I5L5V3llLEsoPyq9P1JVXkedTP33c7MfCG0/5NOPcSJn0TzXcG9YUrR0gQSWioew3LDg==", + "license": "MIT", + "dependencies": { + "regex-utilities": "^2.3.0" + } + }, + "node_modules/regex-recursion": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/regex-recursion/-/regex-recursion-6.0.2.tgz", + "integrity": "sha512-0YCaSCq2VRIebiaUviZNs0cBz1kg5kVS2UKUfNIx8YVs1cN3AV7NTctO5FOKBA+UT2BPJIWZauYHPqJODG50cg==", + "license": "MIT", + "dependencies": { + "regex-utilities": "^2.3.0" + } + }, + "node_modules/regex-utilities": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/regex-utilities/-/regex-utilities-2.3.0.tgz", + "integrity": "sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==", + "license": "MIT" + }, + "node_modules/rehype": { + "version": "13.0.2", + "resolved": "https://registry.npmjs.org/rehype/-/rehype-13.0.2.tgz", + "integrity": "sha512-j31mdaRFrwFRUIlxGeuPXXKWQxet52RBQRvCmzl5eCefn/KGbomK5GMHNMsOJf55fgo3qw5tST5neDuarDYR2A==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "rehype-parse": "^9.0.0", + "rehype-stringify": "^10.0.0", + "unified": "^11.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/rehype-parse": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/rehype-parse/-/rehype-parse-9.0.1.tgz", + "integrity": "sha512-ksCzCD0Fgfh7trPDxr2rSylbwq9iYDkSn8TCDmEJ49ljEUBxDVCzCHv7QNzZOfODanX4+bWQ4WZqLCRWYLfhag==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "hast-util-from-html": "^2.0.0", + "unified": "^11.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/rehype-raw": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/rehype-raw/-/rehype-raw-7.0.0.tgz", + "integrity": "sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "hast-util-raw": "^9.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/rehype-stringify": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/rehype-stringify/-/rehype-stringify-10.0.1.tgz", + "integrity": "sha512-k9ecfXHmIPuFVI61B9DeLPN0qFHfawM6RsuX48hoqlaKSF61RskNjSm1lI8PhBEM0MRdLxVVm4WmTqJQccH9mA==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "hast-util-to-html": "^9.0.0", + "unified": "^11.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-gfm": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/remark-gfm/-/remark-gfm-4.0.1.tgz", + "integrity": "sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "mdast-util-gfm": "^3.0.0", + "micromark-extension-gfm": "^3.0.0", + "remark-parse": "^11.0.0", + "remark-stringify": "^11.0.0", + "unified": "^11.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-parse": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-11.0.0.tgz", + "integrity": "sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "mdast-util-from-markdown": "^2.0.0", + "micromark-util-types": "^2.0.0", + "unified": "^11.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-rehype": { + "version": "11.1.2", + "resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-11.1.2.tgz", + "integrity": "sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "mdast-util-to-hast": "^13.0.0", + "unified": "^11.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-smartypants": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/remark-smartypants/-/remark-smartypants-3.0.2.tgz", + "integrity": "sha512-ILTWeOriIluwEvPjv67v7Blgrcx+LZOkAUVtKI3putuhlZm84FnqDORNXPPm+HY3NdZOMhyDwZ1E+eZB/Df5dA==", + "license": "MIT", + "dependencies": { + "retext": "^9.0.0", + "retext-smartypants": "^6.0.0", + "unified": "^11.0.4", + "unist-util-visit": "^5.0.0" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/remark-stringify": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/remark-stringify/-/remark-stringify-11.0.0.tgz", + "integrity": "sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "mdast-util-to-markdown": "^2.0.0", + "unified": "^11.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/request-light": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/request-light/-/request-light-0.7.0.tgz", + "integrity": "sha512-lMbBMrDoxgsyO+yB3sDcrDuX85yYt7sS8BfQd11jtbW/z5ZWgLZRcEGLsLoYw7I0WSUGQBs8CC8ScIxkTX1+6Q==", + "license": "MIT" + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve-pkg-maps": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", + "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", + "license": "MIT", + "funding": { + "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" + } + }, + "node_modules/retext": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/retext/-/retext-9.0.0.tgz", + "integrity": "sha512-sbMDcpHCNjvlheSgMfEcVrZko3cDzdbe1x/e7G66dFp0Ff7Mldvi2uv6JkJQzdRcvLYE8CA8Oe8siQx8ZOgTcA==", + "license": "MIT", + "dependencies": { + "@types/nlcst": "^2.0.0", + "retext-latin": "^4.0.0", + "retext-stringify": "^4.0.0", + "unified": "^11.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/retext-latin": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/retext-latin/-/retext-latin-4.0.0.tgz", + "integrity": "sha512-hv9woG7Fy0M9IlRQloq/N6atV82NxLGveq+3H2WOi79dtIYWN8OaxogDm77f8YnVXJL2VD3bbqowu5E3EMhBYA==", + "license": "MIT", + "dependencies": { + "@types/nlcst": "^2.0.0", + "parse-latin": "^7.0.0", + "unified": "^11.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/retext-smartypants": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/retext-smartypants/-/retext-smartypants-6.2.0.tgz", + "integrity": "sha512-kk0jOU7+zGv//kfjXEBjdIryL1Acl4i9XNkHxtM7Tm5lFiCog576fjNC9hjoR7LTKQ0DsPWy09JummSsH1uqfQ==", + "license": "MIT", + "dependencies": { + "@types/nlcst": "^2.0.0", + "nlcst-to-string": "^4.0.0", + "unist-util-visit": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/retext-stringify": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/retext-stringify/-/retext-stringify-4.0.0.tgz", + "integrity": "sha512-rtfN/0o8kL1e+78+uxPTqu1Klt0yPzKuQ2BfWwwfgIUSayyzxpM1PJzkKt4V8803uB9qSy32MvI7Xep9khTpiA==", + "license": "MIT", + "dependencies": { + "@types/nlcst": "^2.0.0", + "nlcst-to-string": "^4.0.0", + "unified": "^11.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/rollup": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.60.3.tgz", + "integrity": "sha512-pAQK9HalE84QSm4Po3EmWIZPd3FnjkShVkiMlz1iligWYkWQ7wHYd1PF/T7QZ5TVSD6uSTon5gBVMSM4JfBV+A==", + "license": "MIT", + "dependencies": { + "@types/estree": "1.0.8" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.60.3", + "@rollup/rollup-android-arm64": "4.60.3", + "@rollup/rollup-darwin-arm64": "4.60.3", + "@rollup/rollup-darwin-x64": "4.60.3", + "@rollup/rollup-freebsd-arm64": "4.60.3", + "@rollup/rollup-freebsd-x64": "4.60.3", + "@rollup/rollup-linux-arm-gnueabihf": "4.60.3", + "@rollup/rollup-linux-arm-musleabihf": "4.60.3", + "@rollup/rollup-linux-arm64-gnu": "4.60.3", + "@rollup/rollup-linux-arm64-musl": "4.60.3", + "@rollup/rollup-linux-loong64-gnu": "4.60.3", + "@rollup/rollup-linux-loong64-musl": "4.60.3", + "@rollup/rollup-linux-ppc64-gnu": "4.60.3", + "@rollup/rollup-linux-ppc64-musl": "4.60.3", + "@rollup/rollup-linux-riscv64-gnu": "4.60.3", + "@rollup/rollup-linux-riscv64-musl": "4.60.3", + "@rollup/rollup-linux-s390x-gnu": "4.60.3", + "@rollup/rollup-linux-x64-gnu": "4.60.3", + "@rollup/rollup-linux-x64-musl": "4.60.3", + "@rollup/rollup-openbsd-x64": "4.60.3", + "@rollup/rollup-openharmony-arm64": "4.60.3", + "@rollup/rollup-win32-arm64-msvc": "4.60.3", + "@rollup/rollup-win32-ia32-msvc": "4.60.3", + "@rollup/rollup-win32-x64-gnu": "4.60.3", + "@rollup/rollup-win32-x64-msvc": "4.60.3", + "fsevents": "~2.3.2" + } + }, + "node_modules/sax": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.6.0.tgz", + "integrity": "sha512-6R3J5M4AcbtLUdZmRv2SygeVaM7IhrLXu9BmnOGmmACak8fiUtOsYNWUS4uK7upbmHIBbLBeFeI//477BKLBzA==", + "license": "BlueOak-1.0.0", + "engines": { + "node": ">=11.0.0" + } + }, + "node_modules/semver": { + "version": "7.7.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz", + "integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/sharp": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.34.5.tgz", + "integrity": "sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==", + "hasInstallScript": true, + "license": "Apache-2.0", + "optional": true, + "dependencies": { + "@img/colour": "^1.0.0", + "detect-libc": "^2.1.2", + "semver": "^7.7.3" + }, + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-darwin-arm64": "0.34.5", + "@img/sharp-darwin-x64": "0.34.5", + "@img/sharp-libvips-darwin-arm64": "1.2.4", + "@img/sharp-libvips-darwin-x64": "1.2.4", + "@img/sharp-libvips-linux-arm": "1.2.4", + "@img/sharp-libvips-linux-arm64": "1.2.4", + "@img/sharp-libvips-linux-ppc64": "1.2.4", + "@img/sharp-libvips-linux-riscv64": "1.2.4", + "@img/sharp-libvips-linux-s390x": "1.2.4", + "@img/sharp-libvips-linux-x64": "1.2.4", + "@img/sharp-libvips-linuxmusl-arm64": "1.2.4", + "@img/sharp-libvips-linuxmusl-x64": "1.2.4", + "@img/sharp-linux-arm": "0.34.5", + "@img/sharp-linux-arm64": "0.34.5", + "@img/sharp-linux-ppc64": "0.34.5", + "@img/sharp-linux-riscv64": "0.34.5", + "@img/sharp-linux-s390x": "0.34.5", + "@img/sharp-linux-x64": "0.34.5", + "@img/sharp-linuxmusl-arm64": "0.34.5", + "@img/sharp-linuxmusl-x64": "0.34.5", + "@img/sharp-wasm32": "0.34.5", + "@img/sharp-win32-arm64": "0.34.5", + "@img/sharp-win32-ia32": "0.34.5", + "@img/sharp-win32-x64": "0.34.5" + } + }, + "node_modules/shiki": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/shiki/-/shiki-4.0.2.tgz", + "integrity": "sha512-eAVKTMedR5ckPo4xne/PjYQYrU3qx78gtJZ+sHlXEg5IHhhoQhMfZVzetTYuaJS0L2Ef3AcCRzCHV8T0WI6nIQ==", + "license": "MIT", + "dependencies": { + "@shikijs/core": "4.0.2", + "@shikijs/engine-javascript": "4.0.2", + "@shikijs/engine-oniguruma": "4.0.2", + "@shikijs/langs": "4.0.2", + "@shikijs/themes": "4.0.2", + "@shikijs/types": "4.0.2", + "@shikijs/vscode-textmate": "^10.0.2", + "@types/hast": "^3.0.4" + }, + "engines": { + "node": ">=20" + } + }, + "node_modules/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "license": "MIT" + }, + "node_modules/smol-toml": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/smol-toml/-/smol-toml-1.6.1.tgz", + "integrity": "sha512-dWUG8F5sIIARXih1DTaQAX4SsiTXhInKf1buxdY9DIg4ZYPZK5nGM1VRIYmEbDbsHt7USo99xSLFu5Q1IqTmsg==", + "license": "BSD-3-Clause", + "engines": { + "node": ">= 18" + }, + "funding": { + "url": "https://github.com/sponsors/cyyynthia" + } + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/space-separated-tokens": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz", + "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/stringify-entities": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.4.tgz", + "integrity": "sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==", + "license": "MIT", + "dependencies": { + "character-entities-html4": "^2.0.0", + "character-entities-legacy": "^3.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/svgo": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-4.0.1.tgz", + "integrity": "sha512-XDpWUOPC6FEibaLzjfe0ucaV0YrOjYotGJO1WpF0Zd+n6ZGEQUsSugaoLq9QkEZtAfQIxT42UChcssDVPP3+/w==", + "license": "MIT", + "dependencies": { + "commander": "^11.1.0", + "css-select": "^5.1.0", + "css-tree": "^3.0.1", + "css-what": "^6.1.0", + "csso": "^5.0.5", + "picocolors": "^1.1.1", + "sax": "^1.5.0" + }, + "bin": { + "svgo": "bin/svgo.js" + }, + "engines": { + "node": ">=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/svgo" + } + }, + "node_modules/tailwindcss": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.2.4.tgz", + "integrity": "sha512-HhKppgO81FQof5m6TEnuBWCZGgfRAWbaeOaGT00KOy/Pf/j6oUihdvBpA7ltCeAvZpFhW3j0PTclkxsd4IXYDA==", + "license": "MIT" + }, + "node_modules/tapable": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.3.tgz", + "integrity": "sha512-uxc/zpqFg6x7C8vOE7lh6Lbda8eEL9zmVm/PLeTPBRhh1xCgdWaQ+J1CUieGpIfm2HdtsUpRv+HshiasBMcc6A==", + "license": "MIT", + "engines": { + "node": ">=6" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/tiny-inflate": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/tiny-inflate/-/tiny-inflate-1.0.3.tgz", + "integrity": "sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==", + "license": "MIT" + }, + "node_modules/tinyclip": { + "version": "0.1.12", + "resolved": "https://registry.npmjs.org/tinyclip/-/tinyclip-0.1.12.tgz", + "integrity": "sha512-Ae3OVUqifDw0wBriIBS7yVaW44Dp6eSHQcyq4Igc7eN2TJH/2YsicswaW+J/OuMvhpDPOKEgpAZCjkb4hpoyeA==", + "license": "MIT", + "engines": { + "node": "^16.14.0 || >= 17.3.0" + } + }, + "node_modules/tinyexec": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-1.1.2.tgz", + "integrity": "sha512-dAqSqE/RabpBKI8+h26GfLq6Vb3JVXs30XYQjdMjaj/c2tS8IYYMbIzP599KtRj7c57/wYApb3QjgRgXmrCukA==", + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/tinyglobby": { + "version": "0.2.16", + "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.16.tgz", + "integrity": "sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg==", + "license": "MIT", + "dependencies": { + "fdir": "^6.5.0", + "picomatch": "^4.0.4" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/SuperchupuDev" + } + }, + "node_modules/trim-lines": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz", + "integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/trough": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/trough/-/trough-2.2.0.tgz", + "integrity": "sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "license": "0BSD", + "optional": true + }, + "node_modules/typesafe-path": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/typesafe-path/-/typesafe-path-0.2.2.tgz", + "integrity": "sha512-OJabfkAg1WLZSqJAJ0Z6Sdt3utnbzr/jh+NAHoyWHJe8CMSy79Gm085094M9nvTPy22KzTVn5Zq5mbapCI/hPA==", + "license": "MIT" + }, + "node_modules/typescript": { + "version": "5.9.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz", + "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/typescript-auto-import-cache": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/typescript-auto-import-cache/-/typescript-auto-import-cache-0.3.6.tgz", + "integrity": "sha512-RpuHXrknHdVdK7wv/8ug3Fr0WNsNi5l5aB8MYYuXhq2UH5lnEB1htJ1smhtD5VeCsGr2p8mUDtd83LCQDFVgjQ==", + "license": "MIT", + "dependencies": { + "semver": "^7.3.8" + } + }, + "node_modules/ufo": { + "version": "1.6.4", + "resolved": "https://registry.npmjs.org/ufo/-/ufo-1.6.4.tgz", + "integrity": "sha512-JFNbkD1Svwe0KvGi8GOeLcP4kAWQ609twvCdcHxq1oSL8svv39ZuSvajcD8B+5D0eL4+s1Is2D/O6KN3qcTeRA==", + "license": "MIT" + }, + "node_modules/ultrahtml": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/ultrahtml/-/ultrahtml-1.6.0.tgz", + "integrity": "sha512-R9fBn90VTJrqqLDwyMph+HGne8eqY1iPfYhPzZrvKpIfwkWZbcYlfpsb8B9dTvBfpy1/hqAD7Wi8EKfP9e8zdw==", + "license": "MIT" + }, + "node_modules/uncrypto": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/uncrypto/-/uncrypto-0.1.3.tgz", + "integrity": "sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==", + "license": "MIT" + }, + "node_modules/unified": { + "version": "11.0.5", + "resolved": "https://registry.npmjs.org/unified/-/unified-11.0.5.tgz", + "integrity": "sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "bail": "^2.0.0", + "devlop": "^1.0.0", + "extend": "^3.0.0", + "is-plain-obj": "^4.0.0", + "trough": "^2.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unifont": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/unifont/-/unifont-0.7.4.tgz", + "integrity": "sha512-oHeis4/xl42HUIeHuNZRGEvxj5AaIKR+bHPNegRq5LV1gdc3jundpONbjglKpihmJf+dswygdMJn3eftGIMemg==", + "license": "MIT", + "dependencies": { + "css-tree": "^3.1.0", + "ofetch": "^1.5.1", + "ohash": "^2.0.11" + } + }, + "node_modules/unist-util-find-after": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/unist-util-find-after/-/unist-util-find-after-5.0.0.tgz", + "integrity": "sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-is": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-is": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.1.tgz", + "integrity": "sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-modify-children": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/unist-util-modify-children/-/unist-util-modify-children-4.0.0.tgz", + "integrity": "sha512-+tdN5fGNddvsQdIzUF3Xx82CU9sMM+fA0dLgR9vOmT0oPT2jH+P1nd5lSqfCfXAw+93NhcXNY2qqvTUtE4cQkw==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "array-iterate": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-position": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-5.0.0.tgz", + "integrity": "sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-remove-position": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-5.0.0.tgz", + "integrity": "sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-visit": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-stringify-position": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz", + "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-visit": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.1.0.tgz", + "integrity": "sha512-m+vIdyeCOpdr/QeQCu2EzxX/ohgS8KbnPDgFni4dQsfSCtpz8UqDyY5GjRru8PDKuYn7Fq19j1CQ+nJSsGKOzg==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-is": "^6.0.0", + "unist-util-visit-parents": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-visit-children": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/unist-util-visit-children/-/unist-util-visit-children-3.0.0.tgz", + "integrity": "sha512-RgmdTfSBOg04sdPcpTSD1jzoNBjt9a80/ZCzp5cI9n1qPzLZWF9YdvWGN2zmTumP1HWhXKdUWexjy/Wy/lJ7tA==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-visit-parents": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.2.tgz", + "integrity": "sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-is": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unstorage": { + "version": "1.17.5", + "resolved": "https://registry.npmjs.org/unstorage/-/unstorage-1.17.5.tgz", + "integrity": "sha512-0i3iqvRfx29hkNntHyQvJTpf5W9dQ9ZadSoRU8+xVlhVtT7jAX57fazYO9EHvcRCfBCyi5YRya7XCDOsbTgkPg==", + "license": "MIT", + "dependencies": { + "anymatch": "^3.1.3", + "chokidar": "^5.0.0", + "destr": "^2.0.5", + "h3": "^1.15.10", + "lru-cache": "^11.2.7", + "node-fetch-native": "^1.6.7", + "ofetch": "^1.5.1", + "ufo": "^1.6.3" + }, + "peerDependencies": { + "@azure/app-configuration": "^1.8.0", + "@azure/cosmos": "^4.2.0", + "@azure/data-tables": "^13.3.0", + "@azure/identity": "^4.6.0", + "@azure/keyvault-secrets": "^4.9.0", + "@azure/storage-blob": "^12.26.0", + "@capacitor/preferences": "^6 || ^7 || ^8", + "@deno/kv": ">=0.9.0", + "@netlify/blobs": "^6.5.0 || ^7.0.0 || ^8.1.0 || ^9.0.0 || ^10.0.0", + "@planetscale/database": "^1.19.0", + "@upstash/redis": "^1.34.3", + "@vercel/blob": ">=0.27.1", + "@vercel/functions": "^2.2.12 || ^3.0.0", + "@vercel/kv": "^1 || ^2 || ^3", + "aws4fetch": "^1.0.20", + "db0": ">=0.2.1", + "idb-keyval": "^6.2.1", + "ioredis": "^5.4.2", + "uploadthing": "^7.4.4" + }, + "peerDependenciesMeta": { + "@azure/app-configuration": { + "optional": true + }, + "@azure/cosmos": { + "optional": true + }, + "@azure/data-tables": { + "optional": true + }, + "@azure/identity": { + "optional": true + }, + "@azure/keyvault-secrets": { + "optional": true + }, + "@azure/storage-blob": { + "optional": true + }, + "@capacitor/preferences": { + "optional": true + }, + "@deno/kv": { + "optional": true + }, + "@netlify/blobs": { + "optional": true + }, + "@planetscale/database": { + "optional": true + }, + "@upstash/redis": { + "optional": true + }, + "@vercel/blob": { + "optional": true + }, + "@vercel/functions": { + "optional": true + }, + "@vercel/kv": { + "optional": true + }, + "aws4fetch": { + "optional": true + }, + "db0": { + "optional": true + }, + "idb-keyval": { + "optional": true + }, + "ioredis": { + "optional": true + }, + "uploadthing": { + "optional": true + } + } + }, + "node_modules/unstorage/node_modules/chokidar": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-5.0.0.tgz", + "integrity": "sha512-TQMmc3w+5AxjpL8iIiwebF73dRDF4fBIieAqGn9RGCWaEVwQ6Fb2cGe31Yns0RRIzii5goJ1Y7xbMwo1TxMplw==", + "license": "MIT", + "dependencies": { + "readdirp": "^5.0.0" + }, + "engines": { + "node": ">= 20.19.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/unstorage/node_modules/readdirp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-5.0.0.tgz", + "integrity": "sha512-9u/XQ1pvrQtYyMpZe7DXKv2p5CNvyVwzUB6uhLAnQwHMSgKMBR62lc7AHljaeteeHXn11XTAaLLUVZYVZyuRBQ==", + "license": "MIT", + "engines": { + "node": ">= 20.19.0" + }, + "funding": { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "license": "MIT" + }, + "node_modules/vfile": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/vfile/-/vfile-6.0.3.tgz", + "integrity": "sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "vfile-message": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/vfile-location": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-5.0.3.tgz", + "integrity": "sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/vfile-message": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.3.tgz", + "integrity": "sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-stringify-position": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/vite": { + "version": "7.3.2", + "resolved": "https://registry.npmjs.org/vite/-/vite-7.3.2.tgz", + "integrity": "sha512-Bby3NOsna2jsjfLVOHKes8sGwgl4TT0E6vvpYgnAYDIF/tie7MRaFthmKuHx1NSXjiTueXH3do80FMQgvEktRg==", + "license": "MIT", + "dependencies": { + "esbuild": "^0.27.0", + "fdir": "^6.5.0", + "picomatch": "^4.0.3", + "postcss": "^8.5.6", + "rollup": "^4.43.0", + "tinyglobby": "^0.2.15" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^20.19.0 || >=22.12.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^20.19.0 || >=22.12.0", + "jiti": ">=1.21.0", + "less": "^4.0.0", + "lightningcss": "^1.21.0", + "sass": "^1.70.0", + "sass-embedded": "^1.70.0", + "stylus": ">=0.54.8", + "sugarss": "^5.0.0", + "terser": "^5.16.0", + "tsx": "^4.8.1", + "yaml": "^2.4.2" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "jiti": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + }, + "tsx": { + "optional": true + }, + "yaml": { + "optional": true + } + } + }, + "node_modules/vitefu": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/vitefu/-/vitefu-1.1.3.tgz", + "integrity": "sha512-ub4okH7Z5KLjb6hDyjqrGXqWtWvoYdU3IGm/NorpgHncKoLTCfRIbvlhBm7r0YstIaQRYlp4yEbFqDcKSzXSSg==", + "license": "MIT", + "workspaces": [ + "tests/deps/*", + "tests/projects/*", + "tests/projects/workspace/packages/*" + ], + "peerDependencies": { + "vite": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "vite": { + "optional": true + } + } + }, + "node_modules/volar-service-css": { + "version": "0.0.70", + "resolved": "https://registry.npmjs.org/volar-service-css/-/volar-service-css-0.0.70.tgz", + "integrity": "sha512-K1qyOvBpE3rzdAv3e4/6Rv5yizrYPy5R/ne3IWCAzLBuMO4qBMV3kSqWzj6KUVe6S0AnN6wxF7cRkiaKfYMYJw==", + "license": "MIT", + "dependencies": { + "vscode-css-languageservice": "^6.3.0", + "vscode-languageserver-textdocument": "^1.0.11", + "vscode-uri": "^3.0.8" + }, + "peerDependencies": { + "@volar/language-service": "~2.4.0" + }, + "peerDependenciesMeta": { + "@volar/language-service": { + "optional": true + } + } + }, + "node_modules/volar-service-emmet": { + "version": "0.0.70", + "resolved": "https://registry.npmjs.org/volar-service-emmet/-/volar-service-emmet-0.0.70.tgz", + "integrity": "sha512-xi5bC4m/VyE3zy/n2CXspKeDZs3qA41tHLTw275/7dNWM/RqE2z3BnDICQybHIVp/6G1iOQj5c1qXMgQC08TNg==", + "license": "MIT", + "dependencies": { + "@emmetio/css-parser": "^0.4.1", + "@emmetio/html-matcher": "^1.3.0", + "@vscode/emmet-helper": "^2.9.3", + "vscode-uri": "^3.0.8" + }, + "peerDependencies": { + "@volar/language-service": "~2.4.0" + }, + "peerDependenciesMeta": { + "@volar/language-service": { + "optional": true + } + } + }, + "node_modules/volar-service-html": { + "version": "0.0.70", + "resolved": "https://registry.npmjs.org/volar-service-html/-/volar-service-html-0.0.70.tgz", + "integrity": "sha512-eR6vCgMdmYAo4n+gcT7DSyBQbwB8S3HZZvSagTf0sxNaD4WppMCFfpqWnkrlGStPKMZvMiejRRVmqsX9dYcTvQ==", + "license": "MIT", + "dependencies": { + "vscode-html-languageservice": "^5.3.0", + "vscode-languageserver-textdocument": "^1.0.11", + "vscode-uri": "^3.0.8" + }, + "peerDependencies": { + "@volar/language-service": "~2.4.0" + }, + "peerDependenciesMeta": { + "@volar/language-service": { + "optional": true + } + } + }, + "node_modules/volar-service-prettier": { + "version": "0.0.70", + "resolved": "https://registry.npmjs.org/volar-service-prettier/-/volar-service-prettier-0.0.70.tgz", + "integrity": "sha512-Z6BCFSpGVCd8BPAsZ785Kce1BGlWd5ODqmqZGVuB14MJvrR4+CYz6cDy4F+igmE1gMifqfvMhdgT8Aud4M5ngg==", + "license": "MIT", + "dependencies": { + "vscode-uri": "^3.0.8" + }, + "peerDependencies": { + "@volar/language-service": "~2.4.0", + "prettier": "^2.2 || ^3.0" + }, + "peerDependenciesMeta": { + "@volar/language-service": { + "optional": true + }, + "prettier": { + "optional": true + } + } + }, + "node_modules/volar-service-typescript": { + "version": "0.0.70", + "resolved": "https://registry.npmjs.org/volar-service-typescript/-/volar-service-typescript-0.0.70.tgz", + "integrity": "sha512-l46Bx4cokkUedTd74ojO5H/zqHZJ8SUuyZ0IB8JN4jfRqUM3bQFBHoOwlZCyZmOeO0A3RQNkMnFclxO4c++gsg==", + "license": "MIT", + "dependencies": { + "path-browserify": "^1.0.1", + "semver": "^7.6.2", + "typescript-auto-import-cache": "^0.3.5", + "vscode-languageserver-textdocument": "^1.0.11", + "vscode-nls": "^5.2.0", + "vscode-uri": "^3.0.8" + }, + "peerDependencies": { + "@volar/language-service": "~2.4.0" + }, + "peerDependenciesMeta": { + "@volar/language-service": { + "optional": true + } + } + }, + "node_modules/volar-service-typescript-twoslash-queries": { + "version": "0.0.70", + "resolved": "https://registry.npmjs.org/volar-service-typescript-twoslash-queries/-/volar-service-typescript-twoslash-queries-0.0.70.tgz", + "integrity": "sha512-IdD13Z9N2Bu8EM6CM0fDV1E69olEYGHDU25X51YXmq8Y0CmJ2LNj6gOiBJgpS5JGUqFzECVhMNBW7R0sPdRTMQ==", + "license": "MIT", + "dependencies": { + "vscode-uri": "^3.0.8" + }, + "peerDependencies": { + "@volar/language-service": "~2.4.0" + }, + "peerDependenciesMeta": { + "@volar/language-service": { + "optional": true + } + } + }, + "node_modules/volar-service-yaml": { + "version": "0.0.70", + "resolved": "https://registry.npmjs.org/volar-service-yaml/-/volar-service-yaml-0.0.70.tgz", + "integrity": "sha512-0c8bXDBeoATF9F6iPIlOuYTuZAC4c+yi0siQo920u7eiBJk8oQmUmg9cDUbR4+Gl++bvGP4plj3fErbJuPqdcQ==", + "license": "MIT", + "dependencies": { + "vscode-uri": "^3.0.8", + "yaml-language-server": "~1.20.0" + }, + "peerDependencies": { + "@volar/language-service": "~2.4.0" + }, + "peerDependenciesMeta": { + "@volar/language-service": { + "optional": true + } + } + }, + "node_modules/vscode-css-languageservice": { + "version": "6.3.10", + "resolved": "https://registry.npmjs.org/vscode-css-languageservice/-/vscode-css-languageservice-6.3.10.tgz", + "integrity": "sha512-eq5N9Er3fC4vA9zd9EFhyBG90wtCCuXgRSpAndaOgXMh1Wgep5lBgRIeDgjZBW9pa+332yC9+49cZMW8jcL3MA==", + "license": "MIT", + "dependencies": { + "@vscode/l10n": "^0.0.18", + "vscode-languageserver-textdocument": "^1.0.12", + "vscode-languageserver-types": "3.17.5", + "vscode-uri": "^3.1.0" + } + }, + "node_modules/vscode-html-languageservice": { + "version": "5.6.2", + "resolved": "https://registry.npmjs.org/vscode-html-languageservice/-/vscode-html-languageservice-5.6.2.tgz", + "integrity": "sha512-ulCrSnFnfQ16YzvwnYUgEbUEl/ZG7u2eV27YhvLObSHKkb8fw1Z9cgsnUwjTEeDIdJDoTDTDpxuhQwoenoLNMg==", + "license": "MIT", + "dependencies": { + "@vscode/l10n": "^0.0.18", + "vscode-languageserver-textdocument": "^1.0.12", + "vscode-languageserver-types": "^3.17.5", + "vscode-uri": "^3.1.0" + } + }, + "node_modules/vscode-json-languageservice": { + "version": "4.1.8", + "resolved": "https://registry.npmjs.org/vscode-json-languageservice/-/vscode-json-languageservice-4.1.8.tgz", + "integrity": "sha512-0vSpg6Xd9hfV+eZAaYN63xVVMOTmJ4GgHxXnkLCh+9RsQBkWKIghzLhW2B9ebfG+LQQg8uLtsQ2aUKjTgE+QOg==", + "license": "MIT", + "dependencies": { + "jsonc-parser": "^3.0.0", + "vscode-languageserver-textdocument": "^1.0.1", + "vscode-languageserver-types": "^3.16.0", + "vscode-nls": "^5.0.0", + "vscode-uri": "^3.0.2" + }, + "engines": { + "npm": ">=7.0.0" + } + }, + "node_modules/vscode-jsonrpc": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-8.2.0.tgz", + "integrity": "sha512-C+r0eKJUIfiDIfwJhria30+TYWPtuHJXHtI7J0YlOmKAo7ogxP20T0zxB7HZQIFhIyvoBPwWskjxrvAtfjyZfA==", + "license": "MIT", + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/vscode-languageserver": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-9.0.1.tgz", + "integrity": "sha512-woByF3PDpkHFUreUa7Hos7+pUWdeWMXRd26+ZX2A8cFx6v/JPTtd4/uN0/jB6XQHYaOlHbio03NTHCqrgG5n7g==", + "license": "MIT", + "dependencies": { + "vscode-languageserver-protocol": "3.17.5" + }, + "bin": { + "installServerIntoExtension": "bin/installServerIntoExtension" + } + }, + "node_modules/vscode-languageserver-protocol": { + "version": "3.17.5", + "resolved": "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.17.5.tgz", + "integrity": "sha512-mb1bvRJN8SVznADSGWM9u/b07H7Ecg0I3OgXDuLdn307rl/J3A9YD6/eYOssqhecL27hK1IPZAsaqh00i/Jljg==", + "license": "MIT", + "dependencies": { + "vscode-jsonrpc": "8.2.0", + "vscode-languageserver-types": "3.17.5" + } + }, + "node_modules/vscode-languageserver-textdocument": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.12.tgz", + "integrity": "sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==", + "license": "MIT" + }, + "node_modules/vscode-languageserver-types": { + "version": "3.17.5", + "resolved": "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.17.5.tgz", + "integrity": "sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==", + "license": "MIT" + }, + "node_modules/vscode-nls": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/vscode-nls/-/vscode-nls-5.2.0.tgz", + "integrity": "sha512-RAaHx7B14ZU04EU31pT+rKz2/zSl7xMsfIZuo8pd+KZO6PXtQmpevpq3vxvWNcrGbdmhM/rr5Uw5Mz+NBfhVng==", + "license": "MIT" + }, + "node_modules/vscode-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.1.0.tgz", + "integrity": "sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==", + "license": "MIT" + }, + "node_modules/web-namespaces": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/web-namespaces/-/web-namespaces-2.0.1.tgz", + "integrity": "sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/which-pm-runs": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/which-pm-runs/-/which-pm-runs-1.1.0.tgz", + "integrity": "sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/xxhash-wasm": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/xxhash-wasm/-/xxhash-wasm-1.1.0.tgz", + "integrity": "sha512-147y/6YNh+tlp6nd/2pWq38i9h6mz/EuQ6njIrmW8D1BS5nCqs0P6DG+m6zTGnNz5I+uhZ0SHxBs9BsPrwcKDA==", + "license": "MIT" + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "node_modules/yaml": { + "version": "2.8.4", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.8.4.tgz", + "integrity": "sha512-ml/JPOj9fOQK8RNnWojA67GbZ0ApXAUlN2UQclwv2eVgTgn7O9gg9o7paZWKMp4g0H3nTLtS9LVzhkpOFIKzog==", + "license": "ISC", + "bin": { + "yaml": "bin.mjs" + }, + "engines": { + "node": ">= 14.6" + }, + "funding": { + "url": "https://github.com/sponsors/eemeli" + } + }, + "node_modules/yaml-language-server": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/yaml-language-server/-/yaml-language-server-1.20.0.tgz", + "integrity": "sha512-qhjK/bzSRZ6HtTvgeFvjNPJGWdZ0+x5NREV/9XZWFjIGezew2b4r5JPy66IfOhd5OA7KeFwk1JfmEbnTvev0cA==", + "license": "MIT", + "dependencies": { + "@vscode/l10n": "^0.0.18", + "ajv": "^8.17.1", + "ajv-draft-04": "^1.0.0", + "prettier": "^3.5.0", + "request-light": "^0.5.7", + "vscode-json-languageservice": "4.1.8", + "vscode-languageserver": "^9.0.0", + "vscode-languageserver-textdocument": "^1.0.1", + "vscode-languageserver-types": "^3.16.0", + "vscode-uri": "^3.0.2", + "yaml": "2.7.1" + }, + "bin": { + "yaml-language-server": "bin/yaml-language-server" + } + }, + "node_modules/yaml-language-server/node_modules/request-light": { + "version": "0.5.8", + "resolved": "https://registry.npmjs.org/request-light/-/request-light-0.5.8.tgz", + "integrity": "sha512-3Zjgh+8b5fhRJBQZoy+zbVKpAQGLyka0MPgW3zruTF4dFFJ8Fqcfu9YsAvi/rvdcaTeWG3MkbZv4WKxAn/84Lg==", + "license": "MIT" + }, + "node_modules/yaml-language-server/node_modules/yaml": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.7.1.tgz", + "integrity": "sha512-10ULxpnOCQXxJvBgxsn9ptjq6uviG/htZKk9veJGhlqn3w/DxQ631zFF+nlQXLwmImeS5amR2dl2U8sg6U9jsQ==", + "license": "ISC", + "bin": { + "yaml": "bin.mjs" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "license": "MIT", + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs-parser": { + "version": "22.0.0", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-22.0.0.tgz", + "integrity": "sha512-rwu/ClNdSMpkSrUb+d6BRsSkLUq1fmfsY6TOpYzTwvwkg1/NRG85KBy3kq++A8LKQwX6lsu+aWad+2khvuXrqw==", + "license": "ISC", + "engines": { + "node": "^20.19.0 || ^22.12.0 || >=23" + } + }, + "node_modules/yargs/node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/yocto-queue": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.2.2.tgz", + "integrity": "sha512-4LCcse/U2MHZ63HAJVE+v71o7yOdIe4cZ70Wpf8D/IyjDKYQLV5GD46B+hSTjJsvV5PztjvHoU580EftxjDZFQ==", + "license": "MIT", + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/zod": { + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/zod/-/zod-4.4.3.tgz", + "integrity": "sha512-ytENFjIJFl2UwYglde2jchW2Hwm4GJFLDiSXWdTrJQBIN9Fcyp7n4DhxJEiWNAJMV1/BqWfW/kkg71UDcHJyTQ==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } + }, + "node_modules/zwitch": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", + "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..90366a4 --- /dev/null +++ b/package.json @@ -0,0 +1,24 @@ +{ + "name": "dealplustech-emdash", + "type": "module", + "version": "1.0.0", + "description": "Deal Plus Tech - ระบบน้ำคุณภาพสูง ราคาโรงงาน", + "scripts": { + "dev": "astro dev", + "build": "astro build", + "preview": "astro preview", + "astro": "astro" + }, + "dependencies": { + "@astrojs/check": "^0.9.4", + "@tailwindcss/typography": "^0.5.15", + "@tailwindcss/vite": "^4.0.0", + "astro": "^6.1.7", + "marked": "^18.0.3", + "tailwindcss": "^4.0.0", + "typescript": "^5.6.3" + }, + "engines": { + "node": ">=20.0.0" + } +} diff --git a/public/images/HDPE-welding-crop.jpg b/public/images/HDPE-welding-crop.jpg new file mode 100644 index 0000000..426b4b7 Binary files /dev/null and b/public/images/HDPE-welding-crop.jpg differ diff --git a/public/images/dealplustechlineqr.png b/public/images/dealplustechlineqr.png new file mode 100644 index 0000000..48f6e92 Binary files /dev/null and b/public/images/dealplustechlineqr.png differ diff --git a/public/images/dukelarrsen/dukelarrsen-02-03.jpg b/public/images/dukelarrsen/dukelarrsen-02-03.jpg new file mode 100644 index 0000000..6da5dcc Binary files /dev/null and b/public/images/dukelarrsen/dukelarrsen-02-03.jpg differ diff --git a/public/images/dukelarrsen/dukelarrsen-04.jpg b/public/images/dukelarrsen/dukelarrsen-04.jpg new file mode 100644 index 0000000..74c3fac Binary files /dev/null and b/public/images/dukelarrsen/dukelarrsen-04.jpg differ diff --git a/public/images/dukelarrsen/dukelarrsen-05.jpg b/public/images/dukelarrsen/dukelarrsen-05.jpg new file mode 100644 index 0000000..5300722 Binary files /dev/null and b/public/images/dukelarrsen/dukelarrsen-05.jpg differ diff --git a/public/images/dukelarrsen/dukelarrsen-06.jpg b/public/images/dukelarrsen/dukelarrsen-06.jpg new file mode 100644 index 0000000..a04469a Binary files /dev/null and b/public/images/dukelarrsen/dukelarrsen-06.jpg differ diff --git a/public/images/dukelarrsen/dukelarrsen-07.jpg b/public/images/dukelarrsen/dukelarrsen-07.jpg new file mode 100644 index 0000000..25137ed Binary files /dev/null and b/public/images/dukelarrsen/dukelarrsen-07.jpg differ diff --git a/public/images/dukelarrsen/dukelarrsen-08.jpg b/public/images/dukelarrsen/dukelarrsen-08.jpg new file mode 100644 index 0000000..edc0b61 Binary files /dev/null and b/public/images/dukelarrsen/dukelarrsen-08.jpg differ diff --git a/public/images/dukelarrsen/dukelarrsen-09.jpg b/public/images/dukelarrsen/dukelarrsen-09.jpg new file mode 100644 index 0000000..b21838c Binary files /dev/null and b/public/images/dukelarrsen/dukelarrsen-09.jpg differ diff --git a/public/images/dukelarrsen/dukelarrsen-10.jpg b/public/images/dukelarrsen/dukelarrsen-10.jpg new file mode 100644 index 0000000..137dd2f Binary files /dev/null and b/public/images/dukelarrsen/dukelarrsen-10.jpg differ diff --git a/public/images/dukelarrsen/dukelarrsen-11.jpg b/public/images/dukelarrsen/dukelarrsen-11.jpg new file mode 100644 index 0000000..ee9caba Binary files /dev/null and b/public/images/dukelarrsen/dukelarrsen-11.jpg differ diff --git a/public/images/dukelarrsen/dukelarrsen-12.jpg b/public/images/dukelarrsen/dukelarrsen-12.jpg new file mode 100644 index 0000000..05a1bb9 Binary files /dev/null and b/public/images/dukelarrsen/dukelarrsen-12.jpg differ diff --git a/public/images/dukelarrsen/dukelarrsen-13.jpg b/public/images/dukelarrsen/dukelarrsen-13.jpg new file mode 100644 index 0000000..bef6389 Binary files /dev/null and b/public/images/dukelarrsen/dukelarrsen-13.jpg differ diff --git a/public/images/dukelarrsen/dukelarrsen-14.jpg b/public/images/dukelarrsen/dukelarrsen-14.jpg new file mode 100644 index 0000000..21bfce3 Binary files /dev/null and b/public/images/dukelarrsen/dukelarrsen-14.jpg differ diff --git a/public/images/dukelarrsen/dukelarrsen-15.jpg b/public/images/dukelarrsen/dukelarrsen-15.jpg new file mode 100644 index 0000000..a78f446 Binary files /dev/null and b/public/images/dukelarrsen/dukelarrsen-15.jpg differ diff --git a/public/images/dukelarrsen/dukelarrsen-16.jpg b/public/images/dukelarrsen/dukelarrsen-16.jpg new file mode 100644 index 0000000..d87848e Binary files /dev/null and b/public/images/dukelarrsen/dukelarrsen-16.jpg differ diff --git a/public/images/dukelarrsen/dukelarrsen-17.jpg b/public/images/dukelarrsen/dukelarrsen-17.jpg new file mode 100644 index 0000000..1a387c9 Binary files /dev/null and b/public/images/dukelarrsen/dukelarrsen-17.jpg differ diff --git a/public/images/dukelarrsen/dukelarrsen-18.jpg b/public/images/dukelarrsen/dukelarrsen-18.jpg new file mode 100644 index 0000000..17dd6a4 Binary files /dev/null and b/public/images/dukelarrsen/dukelarrsen-18.jpg differ diff --git a/public/images/dukelarrsen/dukelarrsen-19.jpg b/public/images/dukelarrsen/dukelarrsen-19.jpg new file mode 100644 index 0000000..fdeb618 Binary files /dev/null and b/public/images/dukelarrsen/dukelarrsen-19.jpg differ diff --git a/public/images/dukelarrsen/dukelarrsen-20.jpg b/public/images/dukelarrsen/dukelarrsen-20.jpg new file mode 100644 index 0000000..95b2483 Binary files /dev/null and b/public/images/dukelarrsen/dukelarrsen-20.jpg differ diff --git a/public/images/dukelarrsen/dukelarrsen-21.jpg b/public/images/dukelarrsen/dukelarrsen-21.jpg new file mode 100644 index 0000000..2f3eee0 Binary files /dev/null and b/public/images/dukelarrsen/dukelarrsen-21.jpg differ diff --git a/public/images/dukelarrsen/dukelarrsen-22.jpg b/public/images/dukelarrsen/dukelarrsen-22.jpg new file mode 100644 index 0000000..f9a968c Binary files /dev/null and b/public/images/dukelarrsen/dukelarrsen-22.jpg differ diff --git a/public/images/dukelarrsen/dukelarrsen-23.jpg b/public/images/dukelarrsen/dukelarrsen-23.jpg new file mode 100644 index 0000000..7eb9802 Binary files /dev/null and b/public/images/dukelarrsen/dukelarrsen-23.jpg differ diff --git a/public/images/dukelarrsen/dukelarrsen-24.jpg b/public/images/dukelarrsen/dukelarrsen-24.jpg new file mode 100644 index 0000000..3dc8dd7 Binary files /dev/null and b/public/images/dukelarrsen/dukelarrsen-24.jpg differ diff --git a/public/images/dukelarrsen/dukelarrsen-26.jpg b/public/images/dukelarrsen/dukelarrsen-26.jpg new file mode 100644 index 0000000..7638f37 Binary files /dev/null and b/public/images/dukelarrsen/dukelarrsen-26.jpg differ diff --git a/public/images/dukelarrsen/dukelarrsen-27.jpg b/public/images/dukelarrsen/dukelarrsen-27.jpg new file mode 100644 index 0000000..876960c Binary files /dev/null and b/public/images/dukelarrsen/dukelarrsen-27.jpg differ diff --git a/public/images/dukelarrsen/dukelarrsen-28.jpg b/public/images/dukelarrsen/dukelarrsen-28.jpg new file mode 100644 index 0000000..fdb54ea Binary files /dev/null and b/public/images/dukelarrsen/dukelarrsen-28.jpg differ diff --git a/public/images/dukelarrsen/dukelarrsen-29.jpg b/public/images/dukelarrsen/dukelarrsen-29.jpg new file mode 100644 index 0000000..0300f0e Binary files /dev/null and b/public/images/dukelarrsen/dukelarrsen-29.jpg differ diff --git a/public/images/dukelarrsen/dukelarrsen-30.jpg b/public/images/dukelarrsen/dukelarrsen-30.jpg new file mode 100644 index 0000000..0c2074d Binary files /dev/null and b/public/images/dukelarrsen/dukelarrsen-30.jpg differ diff --git a/public/images/dukelarrsen/dukelarrsen-31.jpg b/public/images/dukelarrsen/dukelarrsen-31.jpg new file mode 100644 index 0000000..f18c37a Binary files /dev/null and b/public/images/dukelarrsen/dukelarrsen-31.jpg differ diff --git a/public/images/dukelarrsen/dukelarrsen-32.jpg b/public/images/dukelarrsen/dukelarrsen-32.jpg new file mode 100644 index 0000000..bc36136 Binary files /dev/null and b/public/images/dukelarrsen/dukelarrsen-32.jpg differ diff --git a/public/images/dukelarrsen/dukelarrsen-33.jpg b/public/images/dukelarrsen/dukelarrsen-33.jpg new file mode 100644 index 0000000..933044e Binary files /dev/null and b/public/images/dukelarrsen/dukelarrsen-33.jpg differ diff --git a/public/images/dukelarrsen/dukelarrsen-34.jpg b/public/images/dukelarrsen/dukelarrsen-34.jpg new file mode 100644 index 0000000..527d4c1 Binary files /dev/null and b/public/images/dukelarrsen/dukelarrsen-34.jpg differ diff --git a/public/images/dukelarrsen/dukelarrsen-35.jpg b/public/images/dukelarrsen/dukelarrsen-35.jpg new file mode 100644 index 0000000..3953351 Binary files /dev/null and b/public/images/dukelarrsen/dukelarrsen-35.jpg differ diff --git a/public/images/dukelarrsen/dukelarrsen-36.jpg b/public/images/dukelarrsen/dukelarrsen-36.jpg new file mode 100644 index 0000000..f14bf5e Binary files /dev/null and b/public/images/dukelarrsen/dukelarrsen-36.jpg differ diff --git a/public/images/dukelarrsen/dukelarrsen-37.jpg b/public/images/dukelarrsen/dukelarrsen-37.jpg new file mode 100644 index 0000000..cf114b3 Binary files /dev/null and b/public/images/dukelarrsen/dukelarrsen-37.jpg differ diff --git a/public/images/dukelarrsen/dukelarrsen-38.jpg b/public/images/dukelarrsen/dukelarrsen-38.jpg new file mode 100644 index 0000000..141f8e0 Binary files /dev/null and b/public/images/dukelarrsen/dukelarrsen-38.jpg differ diff --git a/public/images/dukelarrsen/dukelarrsen-43.jpg b/public/images/dukelarrsen/dukelarrsen-43.jpg new file mode 100644 index 0000000..32b2dfd Binary files /dev/null and b/public/images/dukelarrsen/dukelarrsen-43.jpg differ diff --git a/public/images/durgo-avvs/durgo-002.jpg b/public/images/durgo-avvs/durgo-002.jpg new file mode 100644 index 0000000..17ba34a Binary files /dev/null and b/public/images/durgo-avvs/durgo-002.jpg differ diff --git a/public/images/durgo-avvs/durgo-003.jpg b/public/images/durgo-avvs/durgo-003.jpg new file mode 100644 index 0000000..0122ccb Binary files /dev/null and b/public/images/durgo-avvs/durgo-003.jpg differ diff --git a/public/images/durgo-avvs/durgo-004.jpg b/public/images/durgo-avvs/durgo-004.jpg new file mode 100644 index 0000000..eec9a13 Binary files /dev/null and b/public/images/durgo-avvs/durgo-004.jpg differ diff --git a/public/images/durgo-avvs/durgo-005.jpg b/public/images/durgo-avvs/durgo-005.jpg new file mode 100644 index 0000000..4322447 Binary files /dev/null and b/public/images/durgo-avvs/durgo-005.jpg differ diff --git a/public/images/durgo-avvs/durgo-006.jpg b/public/images/durgo-avvs/durgo-006.jpg new file mode 100644 index 0000000..ab5d30e Binary files /dev/null and b/public/images/durgo-avvs/durgo-006.jpg differ diff --git a/public/images/durgo-avvs/durgo-007.jpg b/public/images/durgo-avvs/durgo-007.jpg new file mode 100644 index 0000000..c40e502 Binary files /dev/null and b/public/images/durgo-avvs/durgo-007.jpg differ diff --git a/public/images/durgo-avvs/durgo-008.jpg b/public/images/durgo-avvs/durgo-008.jpg new file mode 100644 index 0000000..a7c3f5c Binary files /dev/null and b/public/images/durgo-avvs/durgo-008.jpg differ diff --git a/public/images/durgo-avvs/durgo-009.jpg b/public/images/durgo-avvs/durgo-009.jpg new file mode 100644 index 0000000..e588ad8 Binary files /dev/null and b/public/images/durgo-avvs/durgo-009.jpg differ diff --git a/public/images/durgo-avvs/durgo-010.jpg b/public/images/durgo-avvs/durgo-010.jpg new file mode 100644 index 0000000..8b459d9 Binary files /dev/null and b/public/images/durgo-avvs/durgo-010.jpg differ diff --git a/public/images/durgo-avvs/durgo-011.jpg b/public/images/durgo-avvs/durgo-011.jpg new file mode 100644 index 0000000..dadad82 Binary files /dev/null and b/public/images/durgo-avvs/durgo-011.jpg differ diff --git a/public/images/durgo-avvs/durgo-012.jpg b/public/images/durgo-avvs/durgo-012.jpg new file mode 100644 index 0000000..37ce287 Binary files /dev/null and b/public/images/durgo-avvs/durgo-012.jpg differ diff --git a/public/images/durgo-avvs/durgo-013.jpg b/public/images/durgo-avvs/durgo-013.jpg new file mode 100644 index 0000000..5f79832 Binary files /dev/null and b/public/images/durgo-avvs/durgo-013.jpg differ diff --git a/public/images/durgo-avvs/durgo-014.jpg b/public/images/durgo-avvs/durgo-014.jpg new file mode 100644 index 0000000..f450242 Binary files /dev/null and b/public/images/durgo-avvs/durgo-014.jpg differ diff --git a/public/images/durgo-avvs/durgo-015.jpg b/public/images/durgo-avvs/durgo-015.jpg new file mode 100644 index 0000000..1300d5a Binary files /dev/null and b/public/images/durgo-avvs/durgo-015.jpg differ diff --git a/public/images/durgo-avvs/durgo-016.jpg b/public/images/durgo-avvs/durgo-016.jpg new file mode 100644 index 0000000..ec4fc0d Binary files /dev/null and b/public/images/durgo-avvs/durgo-016.jpg differ diff --git a/public/images/durgo-avvs/durgo-017.jpg b/public/images/durgo-avvs/durgo-017.jpg new file mode 100644 index 0000000..fde4840 Binary files /dev/null and b/public/images/durgo-avvs/durgo-017.jpg differ diff --git a/public/images/durgo-avvs/durgo-018.jpg b/public/images/durgo-avvs/durgo-018.jpg new file mode 100644 index 0000000..bba22b3 Binary files /dev/null and b/public/images/durgo-avvs/durgo-018.jpg differ diff --git a/public/images/durgo-avvs/durgo-019.jpg b/public/images/durgo-avvs/durgo-019.jpg new file mode 100644 index 0000000..85d4b18 Binary files /dev/null and b/public/images/durgo-avvs/durgo-019.jpg differ diff --git a/public/images/durgo-avvs/durgo-020.jpg b/public/images/durgo-avvs/durgo-020.jpg new file mode 100644 index 0000000..cf5793c Binary files /dev/null and b/public/images/durgo-avvs/durgo-020.jpg differ diff --git a/public/images/durgo-avvs/durgo-021.jpg b/public/images/durgo-avvs/durgo-021.jpg new file mode 100644 index 0000000..a300c49 Binary files /dev/null and b/public/images/durgo-avvs/durgo-021.jpg differ diff --git a/public/images/durgo-avvs/durgo-022.jpg b/public/images/durgo-avvs/durgo-022.jpg new file mode 100644 index 0000000..fbe9c9a Binary files /dev/null and b/public/images/durgo-avvs/durgo-022.jpg differ diff --git a/public/images/durgo-avvs/durgo-023.jpg b/public/images/durgo-avvs/durgo-023.jpg new file mode 100644 index 0000000..afb4275 Binary files /dev/null and b/public/images/durgo-avvs/durgo-023.jpg differ diff --git a/public/images/durgo-avvs/durgo-024.jpg b/public/images/durgo-avvs/durgo-024.jpg new file mode 100644 index 0000000..fd1b5cd Binary files /dev/null and b/public/images/durgo-avvs/durgo-024.jpg differ diff --git a/public/images/durgo-avvs/durgo-025.jpg b/public/images/durgo-avvs/durgo-025.jpg new file mode 100644 index 0000000..a2f932b Binary files /dev/null and b/public/images/durgo-avvs/durgo-025.jpg differ diff --git a/public/images/durgo-avvs/durgo-026.jpg b/public/images/durgo-avvs/durgo-026.jpg new file mode 100644 index 0000000..fb5b114 Binary files /dev/null and b/public/images/durgo-avvs/durgo-026.jpg differ diff --git a/public/images/durgo-avvs/durgo-027.jpg b/public/images/durgo-avvs/durgo-027.jpg new file mode 100644 index 0000000..16681ac Binary files /dev/null and b/public/images/durgo-avvs/durgo-027.jpg differ diff --git a/public/images/fire-cabinet-1-crop.jpg b/public/images/fire-cabinet-1-crop.jpg new file mode 100644 index 0000000..08f904e Binary files /dev/null and b/public/images/fire-cabinet-1-crop.jpg differ diff --git a/public/images/fire-cabinet-1-new.jpg b/public/images/fire-cabinet-1-new.jpg new file mode 100644 index 0000000..daa3642 Binary files /dev/null and b/public/images/fire-cabinet-1-new.jpg differ diff --git a/public/images/fire-cabinet-1.jpg b/public/images/fire-cabinet-1.jpg new file mode 100644 index 0000000..daa3642 Binary files /dev/null and b/public/images/fire-cabinet-1.jpg differ diff --git a/public/images/fire-cabinet-2-crop.jpg b/public/images/fire-cabinet-2-crop.jpg new file mode 100644 index 0000000..e4f5efe Binary files /dev/null and b/public/images/fire-cabinet-2-crop.jpg differ diff --git a/public/images/fire-cabinet-2-new.jpg b/public/images/fire-cabinet-2-new.jpg new file mode 100644 index 0000000..1e71f72 Binary files /dev/null and b/public/images/fire-cabinet-2-new.jpg differ diff --git a/public/images/fire-cabinet-2.jpg b/public/images/fire-cabinet-2.jpg new file mode 100644 index 0000000..1e71f72 Binary files /dev/null and b/public/images/fire-cabinet-2.jpg differ diff --git a/public/images/fire-extinguisher-p1.jpg b/public/images/fire-extinguisher-p1.jpg new file mode 100644 index 0000000..facd0ee Binary files /dev/null and b/public/images/fire-extinguisher-p1.jpg differ diff --git a/public/images/fire-extinguisher-p2.jpg b/public/images/fire-extinguisher-p2.jpg new file mode 100644 index 0000000..eac4df6 Binary files /dev/null and b/public/images/fire-extinguisher-p2.jpg differ diff --git a/public/images/fire-extinguisher-p3.jpg b/public/images/fire-extinguisher-p3.jpg new file mode 100644 index 0000000..ca12358 Binary files /dev/null and b/public/images/fire-extinguisher-p3.jpg differ diff --git a/public/images/grilles/air-grille-content.jpg b/public/images/grilles/air-grille-content.jpg new file mode 100644 index 0000000..790048f Binary files /dev/null and b/public/images/grilles/air-grille-content.jpg differ diff --git a/public/images/grilles/eye-ball.jpg b/public/images/grilles/eye-ball.jpg new file mode 100644 index 0000000..15d7c0f Binary files /dev/null and b/public/images/grilles/eye-ball.jpg differ diff --git a/public/images/grilles/fresh-air-hing-type.jpg b/public/images/grilles/fresh-air-hing-type.jpg new file mode 100644 index 0000000..198eb83 Binary files /dev/null and b/public/images/grilles/fresh-air-hing-type.jpg differ diff --git a/public/images/grilles/fresh-air1-content-1.jpg b/public/images/grilles/fresh-air1-content-1.jpg new file mode 100644 index 0000000..9ab8d40 Binary files /dev/null and b/public/images/grilles/fresh-air1-content-1.jpg differ diff --git a/public/images/grilles/fresh-air1-content-2.jpg b/public/images/grilles/fresh-air1-content-2.jpg new file mode 100644 index 0000000..9ab8d40 Binary files /dev/null and b/public/images/grilles/fresh-air1-content-2.jpg differ diff --git a/public/images/grilles/grilles-plastic-content.jpg b/public/images/grilles/grilles-plastic-content.jpg new file mode 100644 index 0000000..a996a0a Binary files /dev/null and b/public/images/grilles/grilles-plastic-content.jpg differ diff --git a/public/images/grilles/hi-flo-jet-diffuser.jpg b/public/images/grilles/hi-flo-jet-diffuser.jpg new file mode 100644 index 0000000..f55a95f Binary files /dev/null and b/public/images/grilles/hi-flo-jet-diffuser.jpg differ diff --git a/public/images/grilles/linear-bar.jpg b/public/images/grilles/linear-bar.jpg new file mode 100644 index 0000000..625e6e6 Binary files /dev/null and b/public/images/grilles/linear-bar.jpg differ diff --git a/public/images/grilles/linear-slot-content.jpg b/public/images/grilles/linear-slot-content.jpg new file mode 100644 index 0000000..7856224 Binary files /dev/null and b/public/images/grilles/linear-slot-content.jpg differ diff --git a/public/images/grilles/louver-2.jpg b/public/images/grilles/louver-2.jpg new file mode 100644 index 0000000..1063af9 Binary files /dev/null and b/public/images/grilles/louver-2.jpg differ diff --git a/public/images/grilles/louver-4.jpg b/public/images/grilles/louver-4.jpg new file mode 100644 index 0000000..2ff3308 Binary files /dev/null and b/public/images/grilles/louver-4.jpg differ diff --git a/public/images/grilles/perforate.jpg b/public/images/grilles/perforate.jpg new file mode 100644 index 0000000..c23fd7a Binary files /dev/null and b/public/images/grilles/perforate.jpg differ diff --git a/public/images/grilles/rectangular.jpg b/public/images/grilles/rectangular.jpg new file mode 100644 index 0000000..46bd475 Binary files /dev/null and b/public/images/grilles/rectangular.jpg differ diff --git a/public/images/grilles/return-air-hing-type.jpg b/public/images/grilles/return-air-hing-type.jpg new file mode 100644 index 0000000..53d5a4e Binary files /dev/null and b/public/images/grilles/return-air-hing-type.jpg differ diff --git a/public/images/grilles/return-air.jpg b/public/images/grilles/return-air.jpg new file mode 100644 index 0000000..a461990 Binary files /dev/null and b/public/images/grilles/return-air.jpg differ diff --git a/public/images/grilles/round-ceiling.jpg b/public/images/grilles/round-ceiling.jpg new file mode 100644 index 0000000..c0d18f6 Binary files /dev/null and b/public/images/grilles/round-ceiling.jpg differ diff --git a/public/images/grilles/square-ceiling.jpg b/public/images/grilles/square-ceiling.jpg new file mode 100644 index 0000000..37003d8 Binary files /dev/null and b/public/images/grilles/square-ceiling.jpg differ diff --git a/public/images/grilles/supply-air-content.jpg b/public/images/grilles/supply-air-content.jpg new file mode 100644 index 0000000..9263569 Binary files /dev/null and b/public/images/grilles/supply-air-content.jpg differ diff --git a/public/images/groove-coupling/G1.png b/public/images/groove-coupling/G1.png new file mode 100644 index 0000000..9994247 Binary files /dev/null and b/public/images/groove-coupling/G1.png differ diff --git a/public/images/groove-coupling/G10.png b/public/images/groove-coupling/G10.png new file mode 100644 index 0000000..a657b5b Binary files /dev/null and b/public/images/groove-coupling/G10.png differ diff --git a/public/images/groove-coupling/G11.png b/public/images/groove-coupling/G11.png new file mode 100644 index 0000000..ca76ae8 Binary files /dev/null and b/public/images/groove-coupling/G11.png differ diff --git a/public/images/groove-coupling/G12.png b/public/images/groove-coupling/G12.png new file mode 100644 index 0000000..fef9f33 Binary files /dev/null and b/public/images/groove-coupling/G12.png differ diff --git a/public/images/groove-coupling/G13.png b/public/images/groove-coupling/G13.png new file mode 100644 index 0000000..0541273 Binary files /dev/null and b/public/images/groove-coupling/G13.png differ diff --git a/public/images/groove-coupling/G2.png b/public/images/groove-coupling/G2.png new file mode 100644 index 0000000..58aab43 Binary files /dev/null and b/public/images/groove-coupling/G2.png differ diff --git a/public/images/groove-coupling/G3.png b/public/images/groove-coupling/G3.png new file mode 100644 index 0000000..906f914 Binary files /dev/null and b/public/images/groove-coupling/G3.png differ diff --git a/public/images/groove-coupling/G4.png b/public/images/groove-coupling/G4.png new file mode 100644 index 0000000..ad30438 Binary files /dev/null and b/public/images/groove-coupling/G4.png differ diff --git a/public/images/groove-coupling/G5.png b/public/images/groove-coupling/G5.png new file mode 100644 index 0000000..b307b94 Binary files /dev/null and b/public/images/groove-coupling/G5.png differ diff --git a/public/images/groove-coupling/G6.png b/public/images/groove-coupling/G6.png new file mode 100644 index 0000000..47fc668 Binary files /dev/null and b/public/images/groove-coupling/G6.png differ diff --git a/public/images/groove-coupling/G7.png b/public/images/groove-coupling/G7.png new file mode 100644 index 0000000..2431114 Binary files /dev/null and b/public/images/groove-coupling/G7.png differ diff --git a/public/images/groove-coupling/G8.png b/public/images/groove-coupling/G8.png new file mode 100644 index 0000000..9a51c81 Binary files /dev/null and b/public/images/groove-coupling/G8.png differ diff --git a/public/images/groove-coupling/G9.png b/public/images/groove-coupling/G9.png new file mode 100644 index 0000000..07ffab7 Binary files /dev/null and b/public/images/groove-coupling/G9.png differ diff --git a/public/images/groove-coupling/Grooved01.jpg b/public/images/groove-coupling/Grooved01.jpg new file mode 100644 index 0000000..ad2f986 Binary files /dev/null and b/public/images/groove-coupling/Grooved01.jpg differ diff --git a/public/images/groove-coupling/Grooved02.jpg b/public/images/groove-coupling/Grooved02.jpg new file mode 100644 index 0000000..4b14809 Binary files /dev/null and b/public/images/groove-coupling/Grooved02.jpg differ diff --git a/public/images/hdpe001-page1.jpg b/public/images/hdpe001-page1.jpg new file mode 100644 index 0000000..a2fb66b Binary files /dev/null and b/public/images/hdpe001-page1.jpg differ diff --git a/public/images/hdpe001-page2.jpg b/public/images/hdpe001-page2.jpg new file mode 100644 index 0000000..090652e Binary files /dev/null and b/public/images/hdpe001-page2.jpg differ diff --git a/public/images/line-icon.png b/public/images/line-icon.png new file mode 100644 index 0000000..aaf12cf Binary files /dev/null and b/public/images/line-icon.png differ diff --git a/public/images/line-qr.svg b/public/images/line-qr.svg new file mode 100644 index 0000000..382278a --- /dev/null +++ b/public/images/line-qr.svg @@ -0,0 +1,2 @@ + + diff --git a/public/images/logo/dealplustech-logo.png b/public/images/logo/dealplustech-logo.png new file mode 100644 index 0000000..0fd9195 Binary files /dev/null and b/public/images/logo/dealplustech-logo.png differ diff --git a/public/images/logo/valve_logo.jpg b/public/images/logo/valve_logo.jpg new file mode 100644 index 0000000..69ebdbb Binary files /dev/null and b/public/images/logo/valve_logo.jpg differ diff --git a/public/images/mech/mech-001.jpg b/public/images/mech/mech-001.jpg new file mode 100644 index 0000000..7016899 Binary files /dev/null and b/public/images/mech/mech-001.jpg differ diff --git a/public/images/mech/mech-002.jpg b/public/images/mech/mech-002.jpg new file mode 100644 index 0000000..7016899 Binary files /dev/null and b/public/images/mech/mech-002.jpg differ diff --git a/public/images/mech/mech-003.jpg b/public/images/mech/mech-003.jpg new file mode 100644 index 0000000..d5689a8 Binary files /dev/null and b/public/images/mech/mech-003.jpg differ diff --git a/public/images/mech/mech-004.jpg b/public/images/mech/mech-004.jpg new file mode 100644 index 0000000..ccf49d0 Binary files /dev/null and b/public/images/mech/mech-004.jpg differ diff --git a/public/images/mech/mech-005.jpg b/public/images/mech/mech-005.jpg new file mode 100644 index 0000000..b17ccbe Binary files /dev/null and b/public/images/mech/mech-005.jpg differ diff --git a/public/images/mech/mech-006.jpg b/public/images/mech/mech-006.jpg new file mode 100644 index 0000000..89f4389 Binary files /dev/null and b/public/images/mech/mech-006.jpg differ diff --git a/public/images/mech/mech-007.jpg b/public/images/mech/mech-007.jpg new file mode 100644 index 0000000..eab530d Binary files /dev/null and b/public/images/mech/mech-007.jpg differ diff --git a/public/images/mech/mech-008.jpg b/public/images/mech/mech-008.jpg new file mode 100644 index 0000000..f6e0854 Binary files /dev/null and b/public/images/mech/mech-008.jpg differ diff --git a/public/images/mech/mech-009.jpg b/public/images/mech/mech-009.jpg new file mode 100644 index 0000000..3f41d19 Binary files /dev/null and b/public/images/mech/mech-009.jpg differ diff --git a/public/images/mech/mech-010.jpg b/public/images/mech/mech-010.jpg new file mode 100644 index 0000000..1cd4d2f Binary files /dev/null and b/public/images/mech/mech-010.jpg differ diff --git a/public/images/mech/mech-011.jpg b/public/images/mech/mech-011.jpg new file mode 100644 index 0000000..b87c294 Binary files /dev/null and b/public/images/mech/mech-011.jpg differ diff --git a/public/images/mech/mech-012.jpg b/public/images/mech/mech-012.jpg new file mode 100644 index 0000000..bf4caee Binary files /dev/null and b/public/images/mech/mech-012.jpg differ diff --git a/public/images/mech/mech-013.jpg b/public/images/mech/mech-013.jpg new file mode 100644 index 0000000..fb61168 Binary files /dev/null and b/public/images/mech/mech-013.jpg differ diff --git a/public/images/mech/mech-014.jpg b/public/images/mech/mech-014.jpg new file mode 100644 index 0000000..97789b8 Binary files /dev/null and b/public/images/mech/mech-014.jpg differ diff --git a/public/images/mech/mech-015.jpg b/public/images/mech/mech-015.jpg new file mode 100644 index 0000000..1611d88 Binary files /dev/null and b/public/images/mech/mech-015.jpg differ diff --git a/public/images/mech/mech-016.jpg b/public/images/mech/mech-016.jpg new file mode 100644 index 0000000..c4bd47d Binary files /dev/null and b/public/images/mech/mech-016.jpg differ diff --git a/public/images/mech/mech-017.jpg b/public/images/mech/mech-017.jpg new file mode 100644 index 0000000..39ee67e Binary files /dev/null and b/public/images/mech/mech-017.jpg differ diff --git a/public/images/mech/mech-018.jpg b/public/images/mech/mech-018.jpg new file mode 100644 index 0000000..9477c4b Binary files /dev/null and b/public/images/mech/mech-018.jpg differ diff --git a/public/images/original.jpg b/public/images/original.jpg new file mode 100644 index 0000000..696e773 Binary files /dev/null and b/public/images/original.jpg differ diff --git a/public/images/pipe-coupling/BG-SMC02.png b/public/images/pipe-coupling/BG-SMC02.png new file mode 100644 index 0000000..e4cf8c0 Binary files /dev/null and b/public/images/pipe-coupling/BG-SMC02.png differ diff --git a/public/images/pipe-coupling/Certificates-smc.png b/public/images/pipe-coupling/Certificates-smc.png new file mode 100644 index 0000000..13882d6 Binary files /dev/null and b/public/images/pipe-coupling/Certificates-smc.png differ diff --git a/public/images/pipe-coupling/SMC-Page-02.jpg b/public/images/pipe-coupling/SMC-Page-02.jpg new file mode 100644 index 0000000..f06aa61 Binary files /dev/null and b/public/images/pipe-coupling/SMC-Page-02.jpg differ diff --git a/public/images/pipe-coupling/SMC-Page-03.jpg b/public/images/pipe-coupling/SMC-Page-03.jpg new file mode 100644 index 0000000..62a3ba5 Binary files /dev/null and b/public/images/pipe-coupling/SMC-Page-03.jpg differ diff --git a/public/images/pipe-coupling/SMC-Page-04.jpg b/public/images/pipe-coupling/SMC-Page-04.jpg new file mode 100644 index 0000000..82f0ad3 Binary files /dev/null and b/public/images/pipe-coupling/SMC-Page-04.jpg differ diff --git a/public/images/pipe-coupling/SMC-Page-05.jpg b/public/images/pipe-coupling/SMC-Page-05.jpg new file mode 100644 index 0000000..5a2e213 Binary files /dev/null and b/public/images/pipe-coupling/SMC-Page-05.jpg differ diff --git a/public/images/pipe-coupling/SMC-Page-06.jpg b/public/images/pipe-coupling/SMC-Page-06.jpg new file mode 100644 index 0000000..505d61b Binary files /dev/null and b/public/images/pipe-coupling/SMC-Page-06.jpg differ diff --git a/public/images/pipe-coupling/SMC-Page-07.jpg b/public/images/pipe-coupling/SMC-Page-07.jpg new file mode 100644 index 0000000..a2eb76a Binary files /dev/null and b/public/images/pipe-coupling/SMC-Page-07.jpg differ diff --git a/public/images/pipe-coupling/SMC-Page-08.jpg b/public/images/pipe-coupling/SMC-Page-08.jpg new file mode 100644 index 0000000..5421ea0 Binary files /dev/null and b/public/images/pipe-coupling/SMC-Page-08.jpg differ diff --git a/public/images/pipe-coupling/SMC-Page-09.jpg b/public/images/pipe-coupling/SMC-Page-09.jpg new file mode 100644 index 0000000..196019f Binary files /dev/null and b/public/images/pipe-coupling/SMC-Page-09.jpg differ diff --git a/public/images/pipe-coupling/SMC-Page-10.jpg b/public/images/pipe-coupling/SMC-Page-10.jpg new file mode 100644 index 0000000..ceec57c Binary files /dev/null and b/public/images/pipe-coupling/SMC-Page-10.jpg differ diff --git a/public/images/pipe-coupling/SMC-Page-11.jpg b/public/images/pipe-coupling/SMC-Page-11.jpg new file mode 100644 index 0000000..a22ee73 Binary files /dev/null and b/public/images/pipe-coupling/SMC-Page-11.jpg differ diff --git a/public/images/pipe-coupling/SMC-Page-12.jpg b/public/images/pipe-coupling/SMC-Page-12.jpg new file mode 100644 index 0000000..e356466 Binary files /dev/null and b/public/images/pipe-coupling/SMC-Page-12.jpg differ diff --git a/public/images/pipe-coupling/SMC-Page-13.jpg b/public/images/pipe-coupling/SMC-Page-13.jpg new file mode 100644 index 0000000..1f4e8c6 --- /dev/null +++ b/public/images/pipe-coupling/SMC-Page-13.jpg @@ -0,0 +1,1606 @@ + + + + + + + +ไม่พบหน้า – Deal Plus Tech + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+
+
+
+
+
+
+

บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก

+ +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

OOPS! PAGE NOT BE FOUND

+ + Back to home page +
+
+ + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/public/images/pipe-coupling/SMC-Page-14.jpg b/public/images/pipe-coupling/SMC-Page-14.jpg new file mode 100644 index 0000000..8e16041 Binary files /dev/null and b/public/images/pipe-coupling/SMC-Page-14.jpg differ diff --git a/public/images/pipe-coupling/SMC-Page-15.jpg b/public/images/pipe-coupling/SMC-Page-15.jpg new file mode 100644 index 0000000..2309c14 Binary files /dev/null and b/public/images/pipe-coupling/SMC-Page-15.jpg differ diff --git a/public/images/pipe-coupling/SMC-Page-16.jpg b/public/images/pipe-coupling/SMC-Page-16.jpg new file mode 100644 index 0000000..a48e045 Binary files /dev/null and b/public/images/pipe-coupling/SMC-Page-16.jpg differ diff --git a/public/images/pipe-coupling/SMC-Page-17.jpg b/public/images/pipe-coupling/SMC-Page-17.jpg new file mode 100644 index 0000000..94656e7 Binary files /dev/null and b/public/images/pipe-coupling/SMC-Page-17.jpg differ diff --git a/public/images/pipe-coupling/SMC-Page-18.jpg b/public/images/pipe-coupling/SMC-Page-18.jpg new file mode 100644 index 0000000..95ee283 Binary files /dev/null and b/public/images/pipe-coupling/SMC-Page-18.jpg differ diff --git a/public/images/pipe-coupling/SMC-Page-19.jpg b/public/images/pipe-coupling/SMC-Page-19.jpg new file mode 100644 index 0000000..812fdfc Binary files /dev/null and b/public/images/pipe-coupling/SMC-Page-19.jpg differ diff --git a/public/images/pipe-coupling/SMC-Page-20.jpg b/public/images/pipe-coupling/SMC-Page-20.jpg new file mode 100644 index 0000000..cf6a2ff Binary files /dev/null and b/public/images/pipe-coupling/SMC-Page-20.jpg differ diff --git a/public/images/pipe-coupling/SMC-Page-21.jpg b/public/images/pipe-coupling/SMC-Page-21.jpg new file mode 100644 index 0000000..1918f98 Binary files /dev/null and b/public/images/pipe-coupling/SMC-Page-21.jpg differ diff --git a/public/images/pipe-coupling/SMC-Page-22.jpg b/public/images/pipe-coupling/SMC-Page-22.jpg new file mode 100644 index 0000000..892dddd Binary files /dev/null and b/public/images/pipe-coupling/SMC-Page-22.jpg differ diff --git a/public/images/poloplast/MECH_Fitting_001.jpg b/public/images/poloplast/MECH_Fitting_001.jpg new file mode 100644 index 0000000..eb34eb3 Binary files /dev/null and b/public/images/poloplast/MECH_Fitting_001.jpg differ diff --git a/public/images/poloplast/MECH_Fitting_002.jpg b/public/images/poloplast/MECH_Fitting_002.jpg new file mode 100644 index 0000000..c4551a4 Binary files /dev/null and b/public/images/poloplast/MECH_Fitting_002.jpg differ diff --git a/public/images/poloplast/MECH_Fitting_003.jpg b/public/images/poloplast/MECH_Fitting_003.jpg new file mode 100644 index 0000000..15f84fd Binary files /dev/null and b/public/images/poloplast/MECH_Fitting_003.jpg differ diff --git a/public/images/poloplast/MECH_Fitting_004.jpg b/public/images/poloplast/MECH_Fitting_004.jpg new file mode 100644 index 0000000..430da39 Binary files /dev/null and b/public/images/poloplast/MECH_Fitting_004.jpg differ diff --git a/public/images/poloplast/MECH_Fitting_005.jpg b/public/images/poloplast/MECH_Fitting_005.jpg new file mode 100644 index 0000000..06cb215 Binary files /dev/null and b/public/images/poloplast/MECH_Fitting_005.jpg differ diff --git a/public/images/poloplast/MECH_Fitting_006.jpg b/public/images/poloplast/MECH_Fitting_006.jpg new file mode 100644 index 0000000..2fc1036 Binary files /dev/null and b/public/images/poloplast/MECH_Fitting_006.jpg differ diff --git a/public/images/poloplast/MECH_Fitting_007.jpg b/public/images/poloplast/MECH_Fitting_007.jpg new file mode 100644 index 0000000..796f344 Binary files /dev/null and b/public/images/poloplast/MECH_Fitting_007.jpg differ diff --git a/public/images/poloplast/MECH_Fitting_008.jpg b/public/images/poloplast/MECH_Fitting_008.jpg new file mode 100644 index 0000000..c2e81a5 Binary files /dev/null and b/public/images/poloplast/MECH_Fitting_008.jpg differ diff --git a/public/images/poloplast/MECH_Fitting_009.jpg b/public/images/poloplast/MECH_Fitting_009.jpg new file mode 100644 index 0000000..eff5104 Binary files /dev/null and b/public/images/poloplast/MECH_Fitting_009.jpg differ diff --git a/public/images/poloplast/MECH_Fitting_010.jpg b/public/images/poloplast/MECH_Fitting_010.jpg new file mode 100644 index 0000000..0866ed8 Binary files /dev/null and b/public/images/poloplast/MECH_Fitting_010.jpg differ diff --git a/public/images/poloplast/MECH_Fitting_011.jpg b/public/images/poloplast/MECH_Fitting_011.jpg new file mode 100644 index 0000000..08424b8 Binary files /dev/null and b/public/images/poloplast/MECH_Fitting_011.jpg differ diff --git a/public/images/poloplast/MECH_Fitting_012.jpg b/public/images/poloplast/MECH_Fitting_012.jpg new file mode 100644 index 0000000..9363f1d Binary files /dev/null and b/public/images/poloplast/MECH_Fitting_012.jpg differ diff --git a/public/images/poloplast/MECH_Fitting_013.jpg b/public/images/poloplast/MECH_Fitting_013.jpg new file mode 100644 index 0000000..c1d0ed2 Binary files /dev/null and b/public/images/poloplast/MECH_Fitting_013.jpg differ diff --git a/public/images/poloplast/MECH_Fitting_014.jpg b/public/images/poloplast/MECH_Fitting_014.jpg new file mode 100644 index 0000000..362650a Binary files /dev/null and b/public/images/poloplast/MECH_Fitting_014.jpg differ diff --git a/public/images/poloplast/MECH_Fitting_015.jpg b/public/images/poloplast/MECH_Fitting_015.jpg new file mode 100644 index 0000000..a4bead3 Binary files /dev/null and b/public/images/poloplast/MECH_Fitting_015.jpg differ diff --git a/public/images/poloplast/MECH_Fitting_016.jpg b/public/images/poloplast/MECH_Fitting_016.jpg new file mode 100644 index 0000000..28e551c Binary files /dev/null and b/public/images/poloplast/MECH_Fitting_016.jpg differ diff --git a/public/images/poloplast/MECH_Fitting_017.jpg b/public/images/poloplast/MECH_Fitting_017.jpg new file mode 100644 index 0000000..5f1f4e1 Binary files /dev/null and b/public/images/poloplast/MECH_Fitting_017.jpg differ diff --git a/public/images/poloplast/MECH_Fitting_018.jpg b/public/images/poloplast/MECH_Fitting_018.jpg new file mode 100644 index 0000000..efb15f5 Binary files /dev/null and b/public/images/poloplast/MECH_Fitting_018.jpg differ diff --git a/public/images/poloplast/MECH_Fitting_019.jpg b/public/images/poloplast/MECH_Fitting_019.jpg new file mode 100644 index 0000000..a4fe7a7 Binary files /dev/null and b/public/images/poloplast/MECH_Fitting_019.jpg differ diff --git a/public/images/poloplast/MECH_Fitting_020.jpg b/public/images/poloplast/MECH_Fitting_020.jpg new file mode 100644 index 0000000..43ba71e Binary files /dev/null and b/public/images/poloplast/MECH_Fitting_020.jpg differ diff --git a/public/images/poloplast/MECH_Fitting_021.jpg b/public/images/poloplast/MECH_Fitting_021.jpg new file mode 100644 index 0000000..d4e2c77 Binary files /dev/null and b/public/images/poloplast/MECH_Fitting_021.jpg differ diff --git a/public/images/poloplast/MECH_Fitting_022.jpg b/public/images/poloplast/MECH_Fitting_022.jpg new file mode 100644 index 0000000..247f46f Binary files /dev/null and b/public/images/poloplast/MECH_Fitting_022.jpg differ diff --git a/public/images/poloplast/MECH_Fitting_023.jpg b/public/images/poloplast/MECH_Fitting_023.jpg new file mode 100644 index 0000000..0cf1e5c Binary files /dev/null and b/public/images/poloplast/MECH_Fitting_023.jpg differ diff --git a/public/images/poloplast/MECH_Fitting_024.jpg b/public/images/poloplast/MECH_Fitting_024.jpg new file mode 100644 index 0000000..c13edbc Binary files /dev/null and b/public/images/poloplast/MECH_Fitting_024.jpg differ diff --git a/public/images/poloplast/MECH_Fitting_025.jpg b/public/images/poloplast/MECH_Fitting_025.jpg new file mode 100644 index 0000000..6a82acb Binary files /dev/null and b/public/images/poloplast/MECH_Fitting_025.jpg differ diff --git a/public/images/poloplast/MECH_Fitting_026.jpg b/public/images/poloplast/MECH_Fitting_026.jpg new file mode 100644 index 0000000..c88921e Binary files /dev/null and b/public/images/poloplast/MECH_Fitting_026.jpg differ diff --git a/public/images/poloplast/MECH_Fitting_027.jpg b/public/images/poloplast/MECH_Fitting_027.jpg new file mode 100644 index 0000000..52bc789 Binary files /dev/null and b/public/images/poloplast/MECH_Fitting_027.jpg differ diff --git a/public/images/poloplast/POLOPLAST_001.png b/public/images/poloplast/POLOPLAST_001.png new file mode 100644 index 0000000..9b7456e Binary files /dev/null and b/public/images/poloplast/POLOPLAST_001.png differ diff --git a/public/images/poloplast/POLOPLAST_002.png b/public/images/poloplast/POLOPLAST_002.png new file mode 100644 index 0000000..0a01e73 Binary files /dev/null and b/public/images/poloplast/POLOPLAST_002.png differ diff --git a/public/images/poloplast/POLOPLAST_003.png b/public/images/poloplast/POLOPLAST_003.png new file mode 100644 index 0000000..ac1eadd Binary files /dev/null and b/public/images/poloplast/POLOPLAST_003.png differ diff --git a/public/images/poloplast/POLOPLAST_004.png b/public/images/poloplast/POLOPLAST_004.png new file mode 100644 index 0000000..fa3ae51 Binary files /dev/null and b/public/images/poloplast/POLOPLAST_004.png differ diff --git a/public/images/poloplast/POLOPLAST_005.png b/public/images/poloplast/POLOPLAST_005.png new file mode 100644 index 0000000..bc97519 Binary files /dev/null and b/public/images/poloplast/POLOPLAST_005.png differ diff --git a/public/images/poloplast/POLOPLAST_006.png b/public/images/poloplast/POLOPLAST_006.png new file mode 100644 index 0000000..6643b35 Binary files /dev/null and b/public/images/poloplast/POLOPLAST_006.png differ diff --git a/public/images/poloplast/POLOPLAST_007.png b/public/images/poloplast/POLOPLAST_007.png new file mode 100644 index 0000000..6f1a76c Binary files /dev/null and b/public/images/poloplast/POLOPLAST_007.png differ diff --git a/public/images/poloplast/POLOPLAST_008.png b/public/images/poloplast/POLOPLAST_008.png new file mode 100644 index 0000000..c613143 Binary files /dev/null and b/public/images/poloplast/POLOPLAST_008.png differ diff --git a/public/images/poloplast/POLOPLAST_009.png b/public/images/poloplast/POLOPLAST_009.png new file mode 100644 index 0000000..24c8b50 Binary files /dev/null and b/public/images/poloplast/POLOPLAST_009.png differ diff --git a/public/images/poloplast/POLOPLAST_010.png b/public/images/poloplast/POLOPLAST_010.png new file mode 100644 index 0000000..23151fe Binary files /dev/null and b/public/images/poloplast/POLOPLAST_010.png differ diff --git a/public/images/poloplast/POLOPLAST_011.png b/public/images/poloplast/POLOPLAST_011.png new file mode 100644 index 0000000..a7a438f Binary files /dev/null and b/public/images/poloplast/POLOPLAST_011.png differ diff --git a/public/images/poloplast/POLOPLAST_012.png b/public/images/poloplast/POLOPLAST_012.png new file mode 100644 index 0000000..19961e7 Binary files /dev/null and b/public/images/poloplast/POLOPLAST_012.png differ diff --git a/public/images/poloplast/POLOPLAST_013.png b/public/images/poloplast/POLOPLAST_013.png new file mode 100644 index 0000000..bda2ff6 Binary files /dev/null and b/public/images/poloplast/POLOPLAST_013.png differ diff --git a/public/images/poloplast/POLOPLAST_014.png b/public/images/poloplast/POLOPLAST_014.png new file mode 100644 index 0000000..bf351dc Binary files /dev/null and b/public/images/poloplast/POLOPLAST_014.png differ diff --git a/public/images/poloplast/POLOPLAST_015.png b/public/images/poloplast/POLOPLAST_015.png new file mode 100644 index 0000000..3b075b0 Binary files /dev/null and b/public/images/poloplast/POLOPLAST_015.png differ diff --git a/public/images/poloplast/POLOPLAST_016.png b/public/images/poloplast/POLOPLAST_016.png new file mode 100644 index 0000000..25f781a Binary files /dev/null and b/public/images/poloplast/POLOPLAST_016.png differ diff --git a/public/images/poloplast/POLOPLAST_071.png b/public/images/poloplast/POLOPLAST_071.png new file mode 100644 index 0000000..9818187 Binary files /dev/null and b/public/images/poloplast/POLOPLAST_071.png differ diff --git a/public/images/poloplast/POLOPLAST_072.png b/public/images/poloplast/POLOPLAST_072.png new file mode 100644 index 0000000..c6f31e0 Binary files /dev/null and b/public/images/poloplast/POLOPLAST_072.png differ diff --git a/public/images/poloplast/POLOPLAST_073.png b/public/images/poloplast/POLOPLAST_073.png new file mode 100644 index 0000000..b9f3393 Binary files /dev/null and b/public/images/poloplast/POLOPLAST_073.png differ diff --git a/public/images/poloplast/POLOPLAST_074.png b/public/images/poloplast/POLOPLAST_074.png new file mode 100644 index 0000000..45b497e Binary files /dev/null and b/public/images/poloplast/POLOPLAST_074.png differ diff --git a/public/images/poloplast/POLOPLAST_075.png b/public/images/poloplast/POLOPLAST_075.png new file mode 100644 index 0000000..e103662 Binary files /dev/null and b/public/images/poloplast/POLOPLAST_075.png differ diff --git a/public/images/poloplast/POLOPLAST_076.png b/public/images/poloplast/POLOPLAST_076.png new file mode 100644 index 0000000..a5da053 Binary files /dev/null and b/public/images/poloplast/POLOPLAST_076.png differ diff --git a/public/images/poloplast/POLOPLAST_078.png b/public/images/poloplast/POLOPLAST_078.png new file mode 100644 index 0000000..e01d2c2 Binary files /dev/null and b/public/images/poloplast/POLOPLAST_078.png differ diff --git a/public/images/portfolio/.omc/state/agent-replay-77cb8f65-501a-417d-8d97-926fcba021ef.jsonl b/public/images/portfolio/.omc/state/agent-replay-77cb8f65-501a-417d-8d97-926fcba021ef.jsonl new file mode 100644 index 0000000..dbd59c5 --- /dev/null +++ b/public/images/portfolio/.omc/state/agent-replay-77cb8f65-501a-417d-8d97-926fcba021ef.jsonl @@ -0,0 +1,6 @@ +{"t":0,"agent":"ad4128b","agent_type":"unknown","event":"agent_stop","success":true} +{"t":0,"agent":"ad64cdc","agent_type":"unknown","event":"agent_stop","success":true} +{"t":0,"agent":"af7261d","agent_type":"unknown","event":"agent_stop","success":true} +{"t":0,"agent":"ab325cf","agent_type":"unknown","event":"agent_stop","success":true} +{"t":0,"agent":"a61235c","agent_type":"unknown","event":"agent_stop","success":true} +{"t":0,"agent":"a9ce12a","agent_type":"unknown","event":"agent_stop","success":true} diff --git a/public/images/portfolio/.omc/state/checkpoints/checkpoint-2026-05-11T07-59-27-490Z.json b/public/images/portfolio/.omc/state/checkpoints/checkpoint-2026-05-11T07-59-27-490Z.json new file mode 100644 index 0000000..05a3099 --- /dev/null +++ b/public/images/portfolio/.omc/state/checkpoints/checkpoint-2026-05-11T07-59-27-490Z.json @@ -0,0 +1,16 @@ +{ + "created_at": "2026-05-11T07:59:27.489Z", + "trigger": "auto", + "active_modes": {}, + "todo_summary": { + "pending": 0, + "in_progress": 0, + "completed": 0 + }, + "wisdom_exported": false, + "background_jobs": { + "active": [], + "recent": [], + "stats": null + } +} \ No newline at end of file diff --git a/public/images/portfolio/.omc/state/checkpoints/checkpoint-2026-05-11T10-16-55-529Z.json b/public/images/portfolio/.omc/state/checkpoints/checkpoint-2026-05-11T10-16-55-529Z.json new file mode 100644 index 0000000..cd39760 --- /dev/null +++ b/public/images/portfolio/.omc/state/checkpoints/checkpoint-2026-05-11T10-16-55-529Z.json @@ -0,0 +1,16 @@ +{ + "created_at": "2026-05-11T10:16:55.527Z", + "trigger": "auto", + "active_modes": {}, + "todo_summary": { + "pending": 0, + "in_progress": 0, + "completed": 0 + }, + "wisdom_exported": false, + "background_jobs": { + "active": [], + "recent": [], + "stats": null + } +} \ No newline at end of file diff --git a/public/images/portfolio/.omc/state/checkpoints/checkpoint-2026-05-11T12-31-19-986Z.json b/public/images/portfolio/.omc/state/checkpoints/checkpoint-2026-05-11T12-31-19-986Z.json new file mode 100644 index 0000000..3338757 --- /dev/null +++ b/public/images/portfolio/.omc/state/checkpoints/checkpoint-2026-05-11T12-31-19-986Z.json @@ -0,0 +1,16 @@ +{ + "created_at": "2026-05-11T12:31:19.985Z", + "trigger": "auto", + "active_modes": {}, + "todo_summary": { + "pending": 0, + "in_progress": 0, + "completed": 0 + }, + "wisdom_exported": false, + "background_jobs": { + "active": [], + "recent": [], + "stats": null + } +} \ No newline at end of file diff --git a/public/images/portfolio/.omc/state/checkpoints/checkpoint-2026-05-11T13-06-32-885Z.json b/public/images/portfolio/.omc/state/checkpoints/checkpoint-2026-05-11T13-06-32-885Z.json new file mode 100644 index 0000000..50e656b --- /dev/null +++ b/public/images/portfolio/.omc/state/checkpoints/checkpoint-2026-05-11T13-06-32-885Z.json @@ -0,0 +1,16 @@ +{ + "created_at": "2026-05-11T13:06:32.884Z", + "trigger": "auto", + "active_modes": {}, + "todo_summary": { + "pending": 0, + "in_progress": 0, + "completed": 0 + }, + "wisdom_exported": false, + "background_jobs": { + "active": [], + "recent": [], + "stats": null + } +} \ No newline at end of file diff --git a/public/images/portfolio/.omc/state/checkpoints/checkpoint-2026-05-11T13-15-25-418Z.json b/public/images/portfolio/.omc/state/checkpoints/checkpoint-2026-05-11T13-15-25-418Z.json new file mode 100644 index 0000000..4339be9 --- /dev/null +++ b/public/images/portfolio/.omc/state/checkpoints/checkpoint-2026-05-11T13-15-25-418Z.json @@ -0,0 +1,16 @@ +{ + "created_at": "2026-05-11T13:15:25.417Z", + "trigger": "auto", + "active_modes": {}, + "todo_summary": { + "pending": 0, + "in_progress": 0, + "completed": 0 + }, + "wisdom_exported": false, + "background_jobs": { + "active": [], + "recent": [], + "stats": null + } +} \ No newline at end of file diff --git a/public/images/portfolio/.omc/state/last-tool-error.json b/public/images/portfolio/.omc/state/last-tool-error.json new file mode 100644 index 0000000..257b226 --- /dev/null +++ b/public/images/portfolio/.omc/state/last-tool-error.json @@ -0,0 +1,7 @@ +{ + "tool_name": "Read", + "tool_input_preview": "{\"file_path\":\"/Users/kunthawatgreethong/.openclaude/projects/-Users-kunthawatgreethong-Gitea-dealplustech-emdash/memory/user/user-may2026-init-and-debug.md\"}", + "error": "File does not exist. Note: your current working directory is /Users/kunthawatgreethong/Gitea/dealplustech-emdash/public/images/portfolio.", + "timestamp": "2026-05-11T12:31:19.670Z", + "retry_count": 1 +} \ No newline at end of file diff --git a/public/images/portfolio/.omc/state/sessions/77cb8f65-501a-417d-8d97-926fcba021ef/session-started.json b/public/images/portfolio/.omc/state/sessions/77cb8f65-501a-417d-8d97-926fcba021ef/session-started.json new file mode 100644 index 0000000..1c196a3 --- /dev/null +++ b/public/images/portfolio/.omc/state/sessions/77cb8f65-501a-417d-8d97-926fcba021ef/session-started.json @@ -0,0 +1,6 @@ +{ + "session_id": "77cb8f65-501a-417d-8d97-926fcba021ef", + "started_at": "2026-05-11T13:17:49.645Z", + "cwd": "/Users/kunthawatgreethong/Gitea/dealplustech-emdash/public/images/portfolio", + "pid": 17185 +} \ No newline at end of file diff --git a/public/images/portfolio/.omc/state/subagent-tracking.json b/public/images/portfolio/.omc/state/subagent-tracking.json new file mode 100644 index 0000000..21d3486 --- /dev/null +++ b/public/images/portfolio/.omc/state/subagent-tracking.json @@ -0,0 +1,7 @@ +{ + "agents": [], + "total_spawned": 0, + "total_completed": 0, + "total_failed": 0, + "last_updated": "2026-05-11T14:20:10.433Z" +} \ No newline at end of file diff --git a/public/images/portfolio/begrim.jpg b/public/images/portfolio/begrim.jpg new file mode 100644 index 0000000..3244124 Binary files /dev/null and b/public/images/portfolio/begrim.jpg differ diff --git a/public/images/portfolio/cp-ram-ladkrabang.jpg b/public/images/portfolio/cp-ram-ladkrabang.jpg new file mode 100644 index 0000000..4e02d7f Binary files /dev/null and b/public/images/portfolio/cp-ram-ladkrabang.jpg differ diff --git a/public/images/portfolio/cyber-world.jpg b/public/images/portfolio/cyber-world.jpg new file mode 100644 index 0000000..e4b71a9 Binary files /dev/null and b/public/images/portfolio/cyber-world.jpg differ diff --git a/public/images/portfolio/eminent-air-factory.jpg b/public/images/portfolio/eminent-air-factory.jpg new file mode 100644 index 0000000..14a3c94 Binary files /dev/null and b/public/images/portfolio/eminent-air-factory.jpg differ diff --git a/public/images/portfolio/essilor-factory.jpg b/public/images/portfolio/essilor-factory.jpg new file mode 100644 index 0000000..bc2a13c Binary files /dev/null and b/public/images/portfolio/essilor-factory.jpg differ diff --git a/public/images/portfolio/ethanol-factory.jpg b/public/images/portfolio/ethanol-factory.jpg new file mode 100644 index 0000000..656f763 Binary files /dev/null and b/public/images/portfolio/ethanol-factory.jpg differ diff --git a/public/images/portfolio/ppr-pipe-greanpipe.jpg b/public/images/portfolio/ppr-pipe-greanpipe.jpg new file mode 100644 index 0000000..e385fe1 Binary files /dev/null and b/public/images/portfolio/ppr-pipe-greanpipe.jpg differ diff --git a/public/images/portfolio/pracharat-project.jpg b/public/images/portfolio/pracharat-project.jpg new file mode 100644 index 0000000..e3f4e2f Binary files /dev/null and b/public/images/portfolio/pracharat-project.jpg differ diff --git a/public/images/portfolio/seacon-bang-khae.jpg b/public/images/portfolio/seacon-bang-khae.jpg new file mode 100644 index 0000000..922ed2c Binary files /dev/null and b/public/images/portfolio/seacon-bang-khae.jpg differ diff --git a/public/images/portfolio/thai-nam-tip.jpg b/public/images/portfolio/thai-nam-tip.jpg new file mode 100644 index 0000000..397f0d4 Binary files /dev/null and b/public/images/portfolio/thai-nam-tip.jpg differ diff --git a/public/images/portfolio/toyox.jpg b/public/images/portfolio/toyox.jpg new file mode 100644 index 0000000..b9b931e Binary files /dev/null and b/public/images/portfolio/toyox.jpg differ diff --git a/public/images/ppr/Screenshot-2023-03-08-at-10.39.16-AM-1024x807.png b/public/images/ppr/Screenshot-2023-03-08-at-10.39.16-AM-1024x807.png new file mode 100644 index 0000000..a3a5b3e Binary files /dev/null and b/public/images/ppr/Screenshot-2023-03-08-at-10.39.16-AM-1024x807.png differ diff --git a/public/images/ppr/Screenshot-2023-03-08-at-10.39.16-AM.png b/public/images/ppr/Screenshot-2023-03-08-at-10.39.16-AM.png new file mode 100644 index 0000000..3e19c38 Binary files /dev/null and b/public/images/ppr/Screenshot-2023-03-08-at-10.39.16-AM.png differ diff --git a/public/images/ppr/Screenshot-2023-03-08-at-10.42.41-AM.png b/public/images/ppr/Screenshot-2023-03-08-at-10.42.41-AM.png new file mode 100644 index 0000000..82d4b52 Binary files /dev/null and b/public/images/ppr/Screenshot-2023-03-08-at-10.42.41-AM.png differ diff --git a/public/images/ppr/Screenshot-2023-03-08-at-10.44.22-AM.png b/public/images/ppr/Screenshot-2023-03-08-at-10.44.22-AM.png new file mode 100644 index 0000000..5fccf93 Binary files /dev/null and b/public/images/ppr/Screenshot-2023-03-08-at-10.44.22-AM.png differ diff --git a/public/images/ppr/Screenshot-2023-03-08-at-10.44.28-AM.png b/public/images/ppr/Screenshot-2023-03-08-at-10.44.28-AM.png new file mode 100644 index 0000000..fa3de63 Binary files /dev/null and b/public/images/ppr/Screenshot-2023-03-08-at-10.44.28-AM.png differ diff --git a/public/images/ppr/Screenshot-2023-03-08-at-10.44.36-AM.png b/public/images/ppr/Screenshot-2023-03-08-at-10.44.36-AM.png new file mode 100644 index 0000000..b7d7fc3 Binary files /dev/null and b/public/images/ppr/Screenshot-2023-03-08-at-10.44.36-AM.png differ diff --git a/public/images/ppr/Screenshot-2023-03-08-at-10.44.44-AM.png b/public/images/ppr/Screenshot-2023-03-08-at-10.44.44-AM.png new file mode 100644 index 0000000..074f60e Binary files /dev/null and b/public/images/ppr/Screenshot-2023-03-08-at-10.44.44-AM.png differ diff --git a/public/images/ppr/Screenshot-2023-03-08-at-10.44.51-AM.png b/public/images/ppr/Screenshot-2023-03-08-at-10.44.51-AM.png new file mode 100644 index 0000000..892fae7 Binary files /dev/null and b/public/images/ppr/Screenshot-2023-03-08-at-10.44.51-AM.png differ diff --git a/public/images/ppr/Screenshot-2023-03-08-at-10.51.25-AM.png b/public/images/ppr/Screenshot-2023-03-08-at-10.51.25-AM.png new file mode 100644 index 0000000..83b48e4 Binary files /dev/null and b/public/images/ppr/Screenshot-2023-03-08-at-10.51.25-AM.png differ diff --git a/public/images/ppr/Screenshot-2023-03-08-at-10.51.31-AM.png b/public/images/ppr/Screenshot-2023-03-08-at-10.51.31-AM.png new file mode 100644 index 0000000..10fee28 Binary files /dev/null and b/public/images/ppr/Screenshot-2023-03-08-at-10.51.31-AM.png differ diff --git a/public/images/ppr/Screenshot-2023-03-08-at-10.51.40-AM.png b/public/images/ppr/Screenshot-2023-03-08-at-10.51.40-AM.png new file mode 100644 index 0000000..be8a88f Binary files /dev/null and b/public/images/ppr/Screenshot-2023-03-08-at-10.51.40-AM.png differ diff --git a/public/images/ppr/Screenshot-2023-03-08-at-10.55.18-AM.png b/public/images/ppr/Screenshot-2023-03-08-at-10.55.18-AM.png new file mode 100644 index 0000000..cb43dea Binary files /dev/null and b/public/images/ppr/Screenshot-2023-03-08-at-10.55.18-AM.png differ diff --git a/public/images/ppr/Screenshot-2023-03-08-at-10.57.43-AM.png b/public/images/ppr/Screenshot-2023-03-08-at-10.57.43-AM.png new file mode 100644 index 0000000..25f3d2c Binary files /dev/null and b/public/images/ppr/Screenshot-2023-03-08-at-10.57.43-AM.png differ diff --git a/public/images/ppr/Screenshot-2023-03-08-at-10.59.24-AM.png b/public/images/ppr/Screenshot-2023-03-08-at-10.59.24-AM.png new file mode 100644 index 0000000..ef0c206 Binary files /dev/null and b/public/images/ppr/Screenshot-2023-03-08-at-10.59.24-AM.png differ diff --git a/public/images/ppr/Screenshot-2023-03-08-at-10.59.31-AM.png b/public/images/ppr/Screenshot-2023-03-08-at-10.59.31-AM.png new file mode 100644 index 0000000..444d7dd Binary files /dev/null and b/public/images/ppr/Screenshot-2023-03-08-at-10.59.31-AM.png differ diff --git a/public/images/ppr/Screenshot-2023-03-08-at-11.02.48-AM.png b/public/images/ppr/Screenshot-2023-03-08-at-11.02.48-AM.png new file mode 100644 index 0000000..0df9592 Binary files /dev/null and b/public/images/ppr/Screenshot-2023-03-08-at-11.02.48-AM.png differ diff --git a/public/images/ppr/Screenshot-2023-03-08-at-11.03.05-AM.png b/public/images/ppr/Screenshot-2023-03-08-at-11.03.05-AM.png new file mode 100644 index 0000000..bcea3df Binary files /dev/null and b/public/images/ppr/Screenshot-2023-03-08-at-11.03.05-AM.png differ diff --git a/public/images/ppr/Screenshot-2023-03-08-at-11.05.36-AM.png b/public/images/ppr/Screenshot-2023-03-08-at-11.05.36-AM.png new file mode 100644 index 0000000..13e59a7 Binary files /dev/null and b/public/images/ppr/Screenshot-2023-03-08-at-11.05.36-AM.png differ diff --git a/public/images/ppr/Screenshot-2023-03-08-at-11.05.45-AM.png b/public/images/ppr/Screenshot-2023-03-08-at-11.05.45-AM.png new file mode 100644 index 0000000..7e57e8d Binary files /dev/null and b/public/images/ppr/Screenshot-2023-03-08-at-11.05.45-AM.png differ diff --git a/public/images/ppr/Screenshot-2023-03-08-at-11.07.01-AM.png b/public/images/ppr/Screenshot-2023-03-08-at-11.07.01-AM.png new file mode 100644 index 0000000..050ccc8 Binary files /dev/null and b/public/images/ppr/Screenshot-2023-03-08-at-11.07.01-AM.png differ diff --git a/public/images/ppr/Screenshot-2023-03-08-at-11.07.09-AM.png b/public/images/ppr/Screenshot-2023-03-08-at-11.07.09-AM.png new file mode 100644 index 0000000..03541a1 Binary files /dev/null and b/public/images/ppr/Screenshot-2023-03-08-at-11.07.09-AM.png differ diff --git a/public/images/ppr/Screenshot-2023-03-08-at-11.07.56-AM.png b/public/images/ppr/Screenshot-2023-03-08-at-11.07.56-AM.png new file mode 100644 index 0000000..0283037 Binary files /dev/null and b/public/images/ppr/Screenshot-2023-03-08-at-11.07.56-AM.png differ diff --git a/public/images/ppr/Screenshot-2023-03-08-at-11.08.03-AM.png b/public/images/ppr/Screenshot-2023-03-08-at-11.08.03-AM.png new file mode 100644 index 0000000..cd895ec Binary files /dev/null and b/public/images/ppr/Screenshot-2023-03-08-at-11.08.03-AM.png differ diff --git a/public/images/ppr/Screenshot-2023-03-08-at-11.08.55-AM.png b/public/images/ppr/Screenshot-2023-03-08-at-11.08.55-AM.png new file mode 100644 index 0000000..427c143 Binary files /dev/null and b/public/images/ppr/Screenshot-2023-03-08-at-11.08.55-AM.png differ diff --git a/public/images/ppr/Screenshot-2023-03-08-at-11.09.05-AM.png b/public/images/ppr/Screenshot-2023-03-08-at-11.09.05-AM.png new file mode 100644 index 0000000..0397c62 Binary files /dev/null and b/public/images/ppr/Screenshot-2023-03-08-at-11.09.05-AM.png differ diff --git a/public/images/ppr/Screenshot-2023-03-08-at-11.10.15-AM.png b/public/images/ppr/Screenshot-2023-03-08-at-11.10.15-AM.png new file mode 100644 index 0000000..a5862c8 Binary files /dev/null and b/public/images/ppr/Screenshot-2023-03-08-at-11.10.15-AM.png differ diff --git a/public/images/ppr/Screenshot-2023-03-08-at-11.10.24-AM.png b/public/images/ppr/Screenshot-2023-03-08-at-11.10.24-AM.png new file mode 100644 index 0000000..36f6fed Binary files /dev/null and b/public/images/ppr/Screenshot-2023-03-08-at-11.10.24-AM.png differ diff --git a/public/images/ppr/Screenshot-2023-03-08-at-11.10.32-AM.png b/public/images/ppr/Screenshot-2023-03-08-at-11.10.32-AM.png new file mode 100644 index 0000000..67bcf53 Binary files /dev/null and b/public/images/ppr/Screenshot-2023-03-08-at-11.10.32-AM.png differ diff --git a/public/images/ppr/Screenshot-2023-03-08-at-11.11.22-AM.png b/public/images/ppr/Screenshot-2023-03-08-at-11.11.22-AM.png new file mode 100644 index 0000000..dedfb70 Binary files /dev/null and b/public/images/ppr/Screenshot-2023-03-08-at-11.11.22-AM.png differ diff --git a/public/images/ppr/Screenshot-2023-03-08-at-11.11.30-AM.png b/public/images/ppr/Screenshot-2023-03-08-at-11.11.30-AM.png new file mode 100644 index 0000000..40f95f7 Binary files /dev/null and b/public/images/ppr/Screenshot-2023-03-08-at-11.11.30-AM.png differ diff --git a/public/images/ppr/Screenshot-2023-03-08-at-11.11.38-AM.png b/public/images/ppr/Screenshot-2023-03-08-at-11.11.38-AM.png new file mode 100644 index 0000000..0c1365f Binary files /dev/null and b/public/images/ppr/Screenshot-2023-03-08-at-11.11.38-AM.png differ diff --git a/public/images/ppr/Screenshot-2023-03-08-at-11.12.34-AM.png b/public/images/ppr/Screenshot-2023-03-08-at-11.12.34-AM.png new file mode 100644 index 0000000..773d7f7 Binary files /dev/null and b/public/images/ppr/Screenshot-2023-03-08-at-11.12.34-AM.png differ diff --git a/public/images/ppr/Screenshot-2023-03-08-at-11.12.42-AM.png b/public/images/ppr/Screenshot-2023-03-08-at-11.12.42-AM.png new file mode 100644 index 0000000..0284e60 Binary files /dev/null and b/public/images/ppr/Screenshot-2023-03-08-at-11.12.42-AM.png differ diff --git a/public/images/ppr/TPPR55.jpg b/public/images/ppr/TPPR55.jpg new file mode 100644 index 0000000..3c8c0a5 Binary files /dev/null and b/public/images/ppr/TPPR55.jpg differ diff --git a/public/images/ppr/ppr-pipe-scg-01.jpg b/public/images/ppr/ppr-pipe-scg-01.jpg new file mode 100644 index 0000000..ac6f45f Binary files /dev/null and b/public/images/ppr/ppr-pipe-scg-01.jpg differ diff --git a/public/images/ppr/ppr-pipe-scg-02.jpg b/public/images/ppr/ppr-pipe-scg-02.jpg new file mode 100644 index 0000000..6d3f447 Binary files /dev/null and b/public/images/ppr/ppr-pipe-scg-02.jpg differ diff --git a/public/images/ppr/table-01-price.png b/public/images/ppr/table-01-price.png new file mode 100644 index 0000000..ad56ba5 Binary files /dev/null and b/public/images/ppr/table-01-price.png differ diff --git a/public/images/products-cropped/Banner-TDV2.jpg b/public/images/products-cropped/Banner-TDV2.jpg new file mode 100644 index 0000000..1ea23f2 Binary files /dev/null and b/public/images/products-cropped/Banner-TDV2.jpg differ diff --git a/public/images/products-cropped/Eye-Ball.jpg b/public/images/products-cropped/Eye-Ball.jpg new file mode 100644 index 0000000..1fc1e4f Binary files /dev/null and b/public/images/products-cropped/Eye-Ball.jpg differ diff --git a/public/images/products-cropped/HDPE-Welding2.jpg b/public/images/products-cropped/HDPE-Welding2.jpg new file mode 100644 index 0000000..c6da19e Binary files /dev/null and b/public/images/products-cropped/HDPE-Welding2.jpg differ diff --git a/public/images/products-cropped/Hanger-Clamp-Bolt_000.jpg b/public/images/products-cropped/Hanger-Clamp-Bolt_000.jpg new file mode 100644 index 0000000..0f3c45e Binary files /dev/null and b/public/images/products-cropped/Hanger-Clamp-Bolt_000.jpg differ diff --git a/public/images/products-cropped/MECH_001.jpg b/public/images/products-cropped/MECH_001.jpg new file mode 100644 index 0000000..91c17b7 Binary files /dev/null and b/public/images/products-cropped/MECH_001.jpg differ diff --git a/public/images/products-cropped/Thermobreak_-LS_0.png b/public/images/products-cropped/Thermobreak_-LS_0.png new file mode 100644 index 0000000..ec6bd64 Binary files /dev/null and b/public/images/products-cropped/Thermobreak_-LS_0.png differ diff --git a/public/images/products-cropped/XYLENT_001.png b/public/images/products-cropped/XYLENT_001.png new file mode 100644 index 0000000..46d13fe Binary files /dev/null and b/public/images/products-cropped/XYLENT_001.png differ diff --git a/public/images/products-cropped/backup_originals/BG-SMC02.png b/public/images/products-cropped/backup_originals/BG-SMC02.png new file mode 100644 index 0000000..8ca53bc Binary files /dev/null and b/public/images/products-cropped/backup_originals/BG-SMC02.png differ diff --git a/public/images/products-cropped/backup_originals/Banner-TDV2.jpg b/public/images/products-cropped/backup_originals/Banner-TDV2.jpg new file mode 100644 index 0000000..0c21b44 Binary files /dev/null and b/public/images/products-cropped/backup_originals/Banner-TDV2.jpg differ diff --git a/public/images/products-cropped/backup_originals/Eye-Ball.jpg b/public/images/products-cropped/backup_originals/Eye-Ball.jpg new file mode 100644 index 0000000..0e3ea03 Binary files /dev/null and b/public/images/products-cropped/backup_originals/Eye-Ball.jpg differ diff --git a/public/images/products-cropped/backup_originals/HDPE-Welding2.jpg b/public/images/products-cropped/backup_originals/HDPE-Welding2.jpg new file mode 100644 index 0000000..5434153 Binary files /dev/null and b/public/images/products-cropped/backup_originals/HDPE-Welding2.jpg differ diff --git a/public/images/products-cropped/backup_originals/HDPE-welding-crop.jpg b/public/images/products-cropped/backup_originals/HDPE-welding-crop.jpg new file mode 100644 index 0000000..9830ff7 Binary files /dev/null and b/public/images/products-cropped/backup_originals/HDPE-welding-crop.jpg differ diff --git a/public/images/products-cropped/backup_originals/Hanger-Clamp-Bolt_000.jpg b/public/images/products-cropped/backup_originals/Hanger-Clamp-Bolt_000.jpg new file mode 100644 index 0000000..df41398 Binary files /dev/null and b/public/images/products-cropped/backup_originals/Hanger-Clamp-Bolt_000.jpg differ diff --git a/public/images/products-cropped/backup_originals/MECH_001.jpg b/public/images/products-cropped/backup_originals/MECH_001.jpg new file mode 100644 index 0000000..5b31522 Binary files /dev/null and b/public/images/products-cropped/backup_originals/MECH_001.jpg differ diff --git a/public/images/products-cropped/backup_originals/Thermobreak_-LS_0.png b/public/images/products-cropped/backup_originals/Thermobreak_-LS_0.png new file mode 100644 index 0000000..1548eaa Binary files /dev/null and b/public/images/products-cropped/backup_originals/Thermobreak_-LS_0.png differ diff --git a/public/images/products-cropped/backup_originals/XYLENT_001.png b/public/images/products-cropped/backup_originals/XYLENT_001.png new file mode 100644 index 0000000..f0656a1 Binary files /dev/null and b/public/images/products-cropped/backup_originals/XYLENT_001.png differ diff --git a/public/images/products-cropped/backup_originals/dukelarrsen-43.jpg b/public/images/products-cropped/backup_originals/dukelarrsen-43.jpg new file mode 100644 index 0000000..d416325 Binary files /dev/null and b/public/images/products-cropped/backup_originals/dukelarrsen-43.jpg differ diff --git a/public/images/products-cropped/backup_originals/durgo_000C.jpg b/public/images/products-cropped/backup_originals/durgo_000C.jpg new file mode 100644 index 0000000..12f102e Binary files /dev/null and b/public/images/products-cropped/backup_originals/durgo_000C.jpg differ diff --git a/public/images/products-cropped/backup_originals/extinguishers_000C.jpg b/public/images/products-cropped/backup_originals/extinguishers_000C.jpg new file mode 100644 index 0000000..3f8e0b5 Binary files /dev/null and b/public/images/products-cropped/backup_originals/extinguishers_000C.jpg differ diff --git a/public/images/products-cropped/backup_originals/foot-ppr1.jpg b/public/images/products-cropped/backup_originals/foot-ppr1.jpg new file mode 100644 index 0000000..653cb2f Binary files /dev/null and b/public/images/products-cropped/backup_originals/foot-ppr1.jpg differ diff --git a/public/images/products-cropped/backup_originals/grilles_000C.jpg b/public/images/products-cropped/backup_originals/grilles_000C.jpg new file mode 100644 index 0000000..d4b7c3d Binary files /dev/null and b/public/images/products-cropped/backup_originals/grilles_000C.jpg differ diff --git a/public/images/products-cropped/backup_originals/hdpe001.jpg b/public/images/products-cropped/backup_originals/hdpe001.jpg new file mode 100644 index 0000000..ffc5896 Binary files /dev/null and b/public/images/products-cropped/backup_originals/hdpe001.jpg differ diff --git a/public/images/products-cropped/backup_originals/hdpe001.png b/public/images/products-cropped/backup_originals/hdpe001.png new file mode 100644 index 0000000..420e620 Binary files /dev/null and b/public/images/products-cropped/backup_originals/hdpe001.png differ diff --git a/public/images/products-cropped/backup_originals/mech_000C.jpg b/public/images/products-cropped/backup_originals/mech_000C.jpg new file mode 100644 index 0000000..7a7c762 Binary files /dev/null and b/public/images/products-cropped/backup_originals/mech_000C.jpg differ diff --git a/public/images/products-cropped/backup_originals/pipe-coupling-machine_000.jpg b/public/images/products-cropped/backup_originals/pipe-coupling-machine_000.jpg new file mode 100644 index 0000000..4f13f09 Binary files /dev/null and b/public/images/products-cropped/backup_originals/pipe-coupling-machine_000.jpg differ diff --git a/public/images/products-cropped/backup_originals/ppr-pipe_000C.jpg b/public/images/products-cropped/backup_originals/ppr-pipe_000C.jpg new file mode 100644 index 0000000..f7509df Binary files /dev/null and b/public/images/products-cropped/backup_originals/ppr-pipe_000C.jpg differ diff --git a/public/images/products-cropped/backup_originals/ppr-scg.jpg b/public/images/products-cropped/backup_originals/ppr-scg.jpg new file mode 100644 index 0000000..cb5459c Binary files /dev/null and b/public/images/products-cropped/backup_originals/ppr-scg.jpg differ diff --git a/public/images/products-cropped/backup_originals/pvc-pipe_000C.jpg b/public/images/products-cropped/backup_originals/pvc-pipe_000C.jpg new file mode 100644 index 0000000..1a0e14f Binary files /dev/null and b/public/images/products-cropped/backup_originals/pvc-pipe_000C.jpg differ diff --git a/public/images/products-cropped/backup_originals/pvc-standard-01.jpg b/public/images/products-cropped/backup_originals/pvc-standard-01.jpg new file mode 100644 index 0000000..3902d0b Binary files /dev/null and b/public/images/products-cropped/backup_originals/pvc-standard-01.jpg differ diff --git a/public/images/products-cropped/backup_originals/realflex_000C.jpg b/public/images/products-cropped/backup_originals/realflex_000C.jpg new file mode 100644 index 0000000..5b85a14 Binary files /dev/null and b/public/images/products-cropped/backup_originals/realflex_000C.jpg differ diff --git a/public/images/products-cropped/backup_originals/syler-pipe-cold-water.jpg b/public/images/products-cropped/backup_originals/syler-pipe-cold-water.jpg new file mode 100644 index 0000000..5866151 Binary files /dev/null and b/public/images/products-cropped/backup_originals/syler-pipe-cold-water.jpg differ diff --git a/public/images/products-cropped/backup_originals/thermobreak-solarblock.png b/public/images/products-cropped/backup_originals/thermobreak-solarblock.png new file mode 100644 index 0000000..9488555 Binary files /dev/null and b/public/images/products-cropped/backup_originals/thermobreak-solarblock.png differ diff --git a/public/images/products-cropped/backup_originals/upvc-pipe_000C.jpg b/public/images/products-cropped/backup_originals/upvc-pipe_000C.jpg new file mode 100644 index 0000000..20cc5f2 Binary files /dev/null and b/public/images/products-cropped/backup_originals/upvc-pipe_000C.jpg differ diff --git a/public/images/products-cropped/backup_originals/valve_000C.jpg b/public/images/products-cropped/backup_originals/valve_000C.jpg new file mode 100644 index 0000000..08ef0c7 Binary files /dev/null and b/public/images/products-cropped/backup_originals/valve_000C.jpg differ diff --git a/public/images/products-cropped/backup_originals/vineman_000C.jpg b/public/images/products-cropped/backup_originals/vineman_000C.jpg new file mode 100644 index 0000000..1d0c557 Binary files /dev/null and b/public/images/products-cropped/backup_originals/vineman_000C.jpg differ diff --git a/public/images/products-cropped/backup_originals/water-pump_000C.jpg b/public/images/products-cropped/backup_originals/water-pump_000C.jpg new file mode 100644 index 0000000..2bfdc21 Binary files /dev/null and b/public/images/products-cropped/backup_originals/water-pump_000C.jpg differ diff --git a/public/images/products-cropped/backup_originals/water-treatment_000C.jpg b/public/images/products-cropped/backup_originals/water-treatment_000C.jpg new file mode 100644 index 0000000..a0f0327 Binary files /dev/null and b/public/images/products-cropped/backup_originals/water-treatment_000C.jpg differ diff --git a/public/images/products-cropped/durgo_000C.jpg b/public/images/products-cropped/durgo_000C.jpg new file mode 100644 index 0000000..eda758b Binary files /dev/null and b/public/images/products-cropped/durgo_000C.jpg differ diff --git a/public/images/products-cropped/extinguishers_000C.jpg b/public/images/products-cropped/extinguishers_000C.jpg new file mode 100644 index 0000000..7baf8e2 Binary files /dev/null and b/public/images/products-cropped/extinguishers_000C.jpg differ diff --git a/public/images/products-cropped/foot-ppr1.jpg b/public/images/products-cropped/foot-ppr1.jpg new file mode 100644 index 0000000..91851eb Binary files /dev/null and b/public/images/products-cropped/foot-ppr1.jpg differ diff --git a/public/images/products-cropped/grilles_000C.jpg b/public/images/products-cropped/grilles_000C.jpg new file mode 100644 index 0000000..7348ef8 Binary files /dev/null and b/public/images/products-cropped/grilles_000C.jpg differ diff --git a/public/images/products-cropped/hdpe001.jpg b/public/images/products-cropped/hdpe001.jpg new file mode 100644 index 0000000..9551868 Binary files /dev/null and b/public/images/products-cropped/hdpe001.jpg differ diff --git a/public/images/products-cropped/hdpe001.png b/public/images/products-cropped/hdpe001.png new file mode 100644 index 0000000..95ee774 Binary files /dev/null and b/public/images/products-cropped/hdpe001.png differ diff --git a/public/images/products-cropped/mech_000C.jpg b/public/images/products-cropped/mech_000C.jpg new file mode 100644 index 0000000..8c40648 Binary files /dev/null and b/public/images/products-cropped/mech_000C.jpg differ diff --git a/public/images/products-cropped/pipe-coupling-machine_000.jpg b/public/images/products-cropped/pipe-coupling-machine_000.jpg new file mode 100644 index 0000000..c2700e2 Binary files /dev/null and b/public/images/products-cropped/pipe-coupling-machine_000.jpg differ diff --git a/public/images/products-cropped/ppr-pipe_000C.jpg b/public/images/products-cropped/ppr-pipe_000C.jpg new file mode 100644 index 0000000..3656ffc Binary files /dev/null and b/public/images/products-cropped/ppr-pipe_000C.jpg differ diff --git a/public/images/products-cropped/ppr-scg.jpg b/public/images/products-cropped/ppr-scg.jpg new file mode 100644 index 0000000..6c8aa52 Binary files /dev/null and b/public/images/products-cropped/ppr-scg.jpg differ diff --git a/public/images/products-cropped/pvc-pipe_000C.jpg b/public/images/products-cropped/pvc-pipe_000C.jpg new file mode 100644 index 0000000..6bc4dc5 Binary files /dev/null and b/public/images/products-cropped/pvc-pipe_000C.jpg differ diff --git a/public/images/products-cropped/pvc-standard-01.jpg b/public/images/products-cropped/pvc-standard-01.jpg new file mode 100644 index 0000000..857bbbc Binary files /dev/null and b/public/images/products-cropped/pvc-standard-01.jpg differ diff --git a/public/images/products-cropped/realflex_000C.jpg b/public/images/products-cropped/realflex_000C.jpg new file mode 100644 index 0000000..7f2e481 Binary files /dev/null and b/public/images/products-cropped/realflex_000C.jpg differ diff --git a/public/images/products-cropped/syler-pipe-cold-water.jpg b/public/images/products-cropped/syler-pipe-cold-water.jpg new file mode 100644 index 0000000..7e6809d Binary files /dev/null and b/public/images/products-cropped/syler-pipe-cold-water.jpg differ diff --git a/public/images/products-cropped/upvc-pipe_000C.jpg b/public/images/products-cropped/upvc-pipe_000C.jpg new file mode 100644 index 0000000..2c99557 Binary files /dev/null and b/public/images/products-cropped/upvc-pipe_000C.jpg differ diff --git a/public/images/products-cropped/valve_000C.jpg b/public/images/products-cropped/valve_000C.jpg new file mode 100644 index 0000000..debec9c Binary files /dev/null and b/public/images/products-cropped/valve_000C.jpg differ diff --git a/public/images/products-cropped/vineman_000C.jpg b/public/images/products-cropped/vineman_000C.jpg new file mode 100644 index 0000000..e849dea Binary files /dev/null and b/public/images/products-cropped/vineman_000C.jpg differ diff --git a/public/images/products-cropped/water-pump_000C.jpg b/public/images/products-cropped/water-pump_000C.jpg new file mode 100644 index 0000000..c065055 Binary files /dev/null and b/public/images/products-cropped/water-pump_000C.jpg differ diff --git a/public/images/products-cropped/water-treatment_000C.jpg b/public/images/products-cropped/water-treatment_000C.jpg new file mode 100644 index 0000000..c21db2d Binary files /dev/null and b/public/images/products-cropped/water-treatment_000C.jpg differ diff --git a/public/images/products-misc/ADJUSTABLE_BAND_HANGER_cover_01.jpg b/public/images/products-misc/ADJUSTABLE_BAND_HANGER_cover_01.jpg new file mode 100644 index 0000000..88c462f Binary files /dev/null and b/public/images/products-misc/ADJUSTABLE_BAND_HANGER_cover_01.jpg differ diff --git a/public/images/products-misc/ADJUSTABLE_CLEVIS_HANGER_cover_01.jpg b/public/images/products-misc/ADJUSTABLE_CLEVIS_HANGER_cover_01.jpg new file mode 100644 index 0000000..d879528 Binary files /dev/null and b/public/images/products-misc/ADJUSTABLE_CLEVIS_HANGER_cover_01.jpg differ diff --git a/public/images/products-misc/ADJUSTABLE_SPLIT_RING_HANGER_cover_01.jpg b/public/images/products-misc/ADJUSTABLE_SPLIT_RING_HANGER_cover_01.jpg new file mode 100644 index 0000000..6eccd12 Binary files /dev/null and b/public/images/products-misc/ADJUSTABLE_SPLIT_RING_HANGER_cover_01.jpg differ diff --git a/public/images/products-misc/BEAM_CLAMP_cover_01.jpg b/public/images/products-misc/BEAM_CLAMP_cover_01.jpg new file mode 100644 index 0000000..6da3740 Binary files /dev/null and b/public/images/products-misc/BEAM_CLAMP_cover_01.jpg differ diff --git a/public/images/products-misc/D20-32large.jpg b/public/images/products-misc/D20-32large.jpg new file mode 100644 index 0000000..356f6bf Binary files /dev/null and b/public/images/products-misc/D20-32large.jpg differ diff --git a/public/images/products-misc/D20-32small.jpg b/public/images/products-misc/D20-32small.jpg new file mode 100644 index 0000000..ea3c535 Binary files /dev/null and b/public/images/products-misc/D20-32small.jpg differ diff --git a/public/images/products-misc/D20-63.jpg b/public/images/products-misc/D20-63.jpg new file mode 100644 index 0000000..48ca50d Binary files /dev/null and b/public/images/products-misc/D20-63.jpg differ diff --git a/public/images/products-misc/D20.jpg b/public/images/products-misc/D20.jpg new file mode 100644 index 0000000..1ed8970 Binary files /dev/null and b/public/images/products-misc/D20.jpg differ diff --git a/public/images/products-misc/D25-32-40.jpg b/public/images/products-misc/D25-32-40.jpg new file mode 100644 index 0000000..5080755 Binary files /dev/null and b/public/images/products-misc/D25-32-40.jpg differ diff --git a/public/images/products-misc/D50-25.jpg b/public/images/products-misc/D50-25.jpg new file mode 100644 index 0000000..2d64a1c Binary files /dev/null and b/public/images/products-misc/D50-25.jpg differ diff --git a/public/images/products-misc/D7.jpg b/public/images/products-misc/D7.jpg new file mode 100644 index 0000000..d2fd73d Binary files /dev/null and b/public/images/products-misc/D7.jpg differ diff --git a/public/images/products-misc/D75-110-1.jpg b/public/images/products-misc/D75-110-1.jpg new file mode 100644 index 0000000..a9e7ae2 Binary files /dev/null and b/public/images/products-misc/D75-110-1.jpg differ diff --git a/public/images/products-misc/D75-110.jpg b/public/images/products-misc/D75-110.jpg new file mode 100644 index 0000000..a9e7ae2 Binary files /dev/null and b/public/images/products-misc/D75-110.jpg differ diff --git a/public/images/products-misc/Eye-Ball.jpg b/public/images/products-misc/Eye-Ball.jpg new file mode 100644 index 0000000..95b444f Binary files /dev/null and b/public/images/products-misc/Eye-Ball.jpg differ diff --git a/public/images/products-misc/HDPE.jpg b/public/images/products-misc/HDPE.jpg new file mode 100644 index 0000000..036b020 Binary files /dev/null and b/public/images/products-misc/HDPE.jpg differ diff --git a/public/images/products-misc/HDPE2.jpg b/public/images/products-misc/HDPE2.jpg new file mode 100644 index 0000000..4186d4a Binary files /dev/null and b/public/images/products-misc/HDPE2.jpg differ diff --git a/public/images/products-misc/HDPE4.jpg b/public/images/products-misc/HDPE4.jpg new file mode 100644 index 0000000..a4c893a Binary files /dev/null and b/public/images/products-misc/HDPE4.jpg differ diff --git a/public/images/products-misc/Hanger-Clamp-Bolt_000.jpg b/public/images/products-misc/Hanger-Clamp-Bolt_000.jpg new file mode 100644 index 0000000..164dc6e Binary files /dev/null and b/public/images/products-misc/Hanger-Clamp-Bolt_000.jpg differ diff --git a/public/images/products-misc/LEVEL_CLAMP_cover_01.jpg b/public/images/products-misc/LEVEL_CLAMP_cover_01.jpg new file mode 100644 index 0000000..421b0f7 Binary files /dev/null and b/public/images/products-misc/LEVEL_CLAMP_cover_01.jpg differ diff --git a/public/images/products-misc/MECH_001.jpg b/public/images/products-misc/MECH_001.jpg new file mode 100644 index 0000000..8165836 Binary files /dev/null and b/public/images/products-misc/MECH_001.jpg differ diff --git a/public/images/products-misc/MECH_Fitting_003_1.jpg b/public/images/products-misc/MECH_Fitting_003_1.jpg new file mode 100644 index 0000000..15f84fd Binary files /dev/null and b/public/images/products-misc/MECH_Fitting_003_1.jpg differ diff --git a/public/images/products-misc/MECH_Fitting_004.jpg b/public/images/products-misc/MECH_Fitting_004.jpg new file mode 100644 index 0000000..430da39 Binary files /dev/null and b/public/images/products-misc/MECH_Fitting_004.jpg differ diff --git a/public/images/products-misc/MECH_Fitting_005.jpg b/public/images/products-misc/MECH_Fitting_005.jpg new file mode 100644 index 0000000..06cb215 Binary files /dev/null and b/public/images/products-misc/MECH_Fitting_005.jpg differ diff --git a/public/images/products-misc/MECH_Fitting_007.jpg b/public/images/products-misc/MECH_Fitting_007.jpg new file mode 100644 index 0000000..796f344 Binary files /dev/null and b/public/images/products-misc/MECH_Fitting_007.jpg differ diff --git a/public/images/products-misc/MECH_Fitting_011.jpg b/public/images/products-misc/MECH_Fitting_011.jpg new file mode 100644 index 0000000..08424b8 Binary files /dev/null and b/public/images/products-misc/MECH_Fitting_011.jpg differ diff --git a/public/images/products-misc/MECH_Fitting_012.jpg b/public/images/products-misc/MECH_Fitting_012.jpg new file mode 100644 index 0000000..9363f1d Binary files /dev/null and b/public/images/products-misc/MECH_Fitting_012.jpg differ diff --git a/public/images/products-misc/MECH_Fitting_013.jpg b/public/images/products-misc/MECH_Fitting_013.jpg new file mode 100644 index 0000000..c1d0ed2 Binary files /dev/null and b/public/images/products-misc/MECH_Fitting_013.jpg differ diff --git a/public/images/products-misc/MECH_Fitting_027_1.jpg b/public/images/products-misc/MECH_Fitting_027_1.jpg new file mode 100644 index 0000000..52bc789 Binary files /dev/null and b/public/images/products-misc/MECH_Fitting_027_1.jpg differ diff --git a/public/images/products-misc/POLOPLAST_001.png b/public/images/products-misc/POLOPLAST_001.png new file mode 100644 index 0000000..9b7456e Binary files /dev/null and b/public/images/products-misc/POLOPLAST_001.png differ diff --git a/public/images/products-misc/SYLER-b01.jpg b/public/images/products-misc/SYLER-b01.jpg new file mode 100644 index 0000000..b17999c Binary files /dev/null and b/public/images/products-misc/SYLER-b01.jpg differ diff --git a/public/images/products-misc/SYLER-b02.jpg b/public/images/products-misc/SYLER-b02.jpg new file mode 100644 index 0000000..0d90c02 Binary files /dev/null and b/public/images/products-misc/SYLER-b02.jpg differ diff --git a/public/images/products-misc/SYLER-b02_1.jpg b/public/images/products-misc/SYLER-b02_1.jpg new file mode 100644 index 0000000..0d90c02 Binary files /dev/null and b/public/images/products-misc/SYLER-b02_1.jpg differ diff --git a/public/images/products-misc/SYLER01.jpg b/public/images/products-misc/SYLER01.jpg new file mode 100644 index 0000000..f444fdd Binary files /dev/null and b/public/images/products-misc/SYLER01.jpg differ diff --git a/public/images/products-misc/TPPR55.jpg b/public/images/products-misc/TPPR55.jpg new file mode 100644 index 0000000..3c8c0a5 Binary files /dev/null and b/public/images/products-misc/TPPR55.jpg differ diff --git a/public/images/products-misc/Water-Pump1.jpg b/public/images/products-misc/Water-Pump1.jpg new file mode 100644 index 0000000..5ab50b5 Binary files /dev/null and b/public/images/products-misc/Water-Pump1.jpg differ diff --git a/public/images/products-misc/aayaaa_aaaaaaaaa-low-pipe-clamp.jpg b/public/images/products-misc/aayaaa_aaaaaaaaa-low-pipe-clamp.jpg new file mode 100644 index 0000000..588d67c Binary files /dev/null and b/public/images/products-misc/aayaaa_aaaaaaaaa-low-pipe-clamp.jpg differ diff --git a/public/images/products-misc/balljet-cover_000C-768x1024.jpg b/public/images/products-misc/balljet-cover_000C-768x1024.jpg new file mode 100644 index 0000000..ce971a8 Binary files /dev/null and b/public/images/products-misc/balljet-cover_000C-768x1024.jpg differ diff --git a/public/images/products-misc/balljet-cover_000C-768x1024_1.jpg b/public/images/products-misc/balljet-cover_000C-768x1024_1.jpg new file mode 100644 index 0000000..ce971a8 Binary files /dev/null and b/public/images/products-misc/balljet-cover_000C-768x1024_1.jpg differ diff --git a/public/images/products-misc/dukelarrsen-01.jpg b/public/images/products-misc/dukelarrsen-01.jpg new file mode 100644 index 0000000..539e776 Binary files /dev/null and b/public/images/products-misc/dukelarrsen-01.jpg differ diff --git a/public/images/products-misc/ppr-pipe_000C.jpg b/public/images/products-misc/ppr-pipe_000C.jpg new file mode 100644 index 0000000..01aa565 Binary files /dev/null and b/public/images/products-misc/ppr-pipe_000C.jpg differ diff --git a/public/images/products-misc/ppr-welding-machine-main.jpg b/public/images/products-misc/ppr-welding-machine-main.jpg new file mode 100644 index 0000000..687d9fe Binary files /dev/null and b/public/images/products-misc/ppr-welding-machine-main.jpg differ diff --git a/public/images/products-misc/ppr0001.jpg b/public/images/products-misc/ppr0001.jpg new file mode 100644 index 0000000..2b12a22 Binary files /dev/null and b/public/images/products-misc/ppr0001.jpg differ diff --git a/public/images/products-misc/ppr0002.jpg b/public/images/products-misc/ppr0002.jpg new file mode 100644 index 0000000..bdf101a Binary files /dev/null and b/public/images/products-misc/ppr0002.jpg differ diff --git a/public/images/products-misc/realflex_000C-768x1024.jpg b/public/images/products-misc/realflex_000C-768x1024.jpg new file mode 100644 index 0000000..e6fe0d8 Binary files /dev/null and b/public/images/products-misc/realflex_000C-768x1024.jpg differ diff --git a/public/images/products-misc/realflex_000C-768x1024_1.jpg b/public/images/products-misc/realflex_000C-768x1024_1.jpg new file mode 100644 index 0000000..e6fe0d8 Binary files /dev/null and b/public/images/products-misc/realflex_000C-768x1024_1.jpg differ diff --git a/public/images/products-misc/realflex_000C.jpg b/public/images/products-misc/realflex_000C.jpg new file mode 100644 index 0000000..535b272 Binary files /dev/null and b/public/images/products-misc/realflex_000C.jpg differ diff --git a/public/images/products-misc/realflex_000C_1.jpg b/public/images/products-misc/realflex_000C_1.jpg new file mode 100644 index 0000000..535b272 Binary files /dev/null and b/public/images/products-misc/realflex_000C_1.jpg differ diff --git a/public/images/products-misc/syler001-1.jpg b/public/images/products-misc/syler001-1.jpg new file mode 100644 index 0000000..ebb89d3 Binary files /dev/null and b/public/images/products-misc/syler001-1.jpg differ diff --git a/public/images/products-misc/syler001.jpg b/public/images/products-misc/syler001.jpg new file mode 100644 index 0000000..c87cf96 Binary files /dev/null and b/public/images/products-misc/syler001.jpg differ diff --git a/public/images/products-misc/syler001_1.jpg b/public/images/products-misc/syler001_1.jpg new file mode 100644 index 0000000..c87cf96 Binary files /dev/null and b/public/images/products-misc/syler001_1.jpg differ diff --git a/public/images/products-misc/syler002-1.jpg b/public/images/products-misc/syler002-1.jpg new file mode 100644 index 0000000..22d56f7 Binary files /dev/null and b/public/images/products-misc/syler002-1.jpg differ diff --git a/public/images/products-misc/syler002-1_1.jpg b/public/images/products-misc/syler002-1_1.jpg new file mode 100644 index 0000000..22d56f7 Binary files /dev/null and b/public/images/products-misc/syler002-1_1.jpg differ diff --git a/public/images/products-misc/syler002.jpg b/public/images/products-misc/syler002.jpg new file mode 100644 index 0000000..3526126 Binary files /dev/null and b/public/images/products-misc/syler002.jpg differ diff --git a/public/images/products-misc/syler002_1.jpg b/public/images/products-misc/syler002_1.jpg new file mode 100644 index 0000000..3526126 Binary files /dev/null and b/public/images/products-misc/syler002_1.jpg differ diff --git a/public/images/products-misc/syler003.jpg b/public/images/products-misc/syler003.jpg new file mode 100644 index 0000000..ebc1b58 Binary files /dev/null and b/public/images/products-misc/syler003.jpg differ diff --git a/public/images/products-misc/syler003_1.jpg b/public/images/products-misc/syler003_1.jpg new file mode 100644 index 0000000..ebc1b58 Binary files /dev/null and b/public/images/products-misc/syler003_1.jpg differ diff --git a/public/images/products-misc/syler_000C.jpg b/public/images/products-misc/syler_000C.jpg new file mode 100644 index 0000000..37e6ea6 Binary files /dev/null and b/public/images/products-misc/syler_000C.jpg differ diff --git a/public/images/products-misc/valve_logo.jpg b/public/images/products-misc/valve_logo.jpg new file mode 100644 index 0000000..69ebdbb Binary files /dev/null and b/public/images/products-misc/valve_logo.jpg differ diff --git a/public/images/products-misc/water-pump_000C-768x1024.jpg b/public/images/products-misc/water-pump_000C-768x1024.jpg new file mode 100644 index 0000000..fbc9d9e Binary files /dev/null and b/public/images/products-misc/water-pump_000C-768x1024.jpg differ diff --git a/public/images/products-misc/water-pump_000C-768x1024_1.jpg b/public/images/products-misc/water-pump_000C-768x1024_1.jpg new file mode 100644 index 0000000..fbc9d9e Binary files /dev/null and b/public/images/products-misc/water-pump_000C-768x1024_1.jpg differ diff --git a/public/images/products-misc/water-pump_000C.jpg b/public/images/products-misc/water-pump_000C.jpg new file mode 100644 index 0000000..5f1b95a Binary files /dev/null and b/public/images/products-misc/water-pump_000C.jpg differ diff --git a/public/images/products-misc/water-pump_000C_1.jpg b/public/images/products-misc/water-pump_000C_1.jpg new file mode 100644 index 0000000..5f1b95a Binary files /dev/null and b/public/images/products-misc/water-pump_000C_1.jpg differ diff --git a/public/images/products-raw/ball-jet/231947_0-875x1024.jpg b/public/images/products-raw/ball-jet/231947_0-875x1024.jpg new file mode 100644 index 0000000..d6dab62 Binary files /dev/null and b/public/images/products-raw/ball-jet/231947_0-875x1024.jpg differ diff --git a/public/images/products-raw/ball-jet/main-ball-jet.jpg b/public/images/products-raw/ball-jet/main-ball-jet.jpg new file mode 100644 index 0000000..a5bc933 Binary files /dev/null and b/public/images/products-raw/ball-jet/main-ball-jet.jpg differ diff --git a/public/images/products-raw/pipe-insulation/Insulte_06.png b/public/images/products-raw/pipe-insulation/Insulte_06.png new file mode 100644 index 0000000..f927be7 Binary files /dev/null and b/public/images/products-raw/pipe-insulation/Insulte_06.png differ diff --git a/public/images/products-raw/pipe-insulation/Insulte_07.png b/public/images/products-raw/pipe-insulation/Insulte_07.png new file mode 100644 index 0000000..af642f6 Binary files /dev/null and b/public/images/products-raw/pipe-insulation/Insulte_07.png differ diff --git a/public/images/products-raw/tevada/TEVADA_001-987x1024.png b/public/images/products-raw/tevada/TEVADA_001-987x1024.png new file mode 100644 index 0000000..b1b636e Binary files /dev/null and b/public/images/products-raw/tevada/TEVADA_001-987x1024.png differ diff --git a/public/images/products-raw/tevada/TEVADA_002-1024x278.png b/public/images/products-raw/tevada/TEVADA_002-1024x278.png new file mode 100644 index 0000000..5de9f92 Binary files /dev/null and b/public/images/products-raw/tevada/TEVADA_002-1024x278.png differ diff --git a/public/images/products-raw/tevada/TEVADA_003-1024x647.png b/public/images/products-raw/tevada/TEVADA_003-1024x647.png new file mode 100644 index 0000000..8fc6b5b Binary files /dev/null and b/public/images/products-raw/tevada/TEVADA_003-1024x647.png differ diff --git a/public/images/products-raw/tevada/TEVADA_004.png b/public/images/products-raw/tevada/TEVADA_004.png new file mode 100644 index 0000000..7260f32 Binary files /dev/null and b/public/images/products-raw/tevada/TEVADA_004.png differ diff --git a/public/images/products-raw/tevada/TEVADA_005.png b/public/images/products-raw/tevada/TEVADA_005.png new file mode 100644 index 0000000..8b6e37d Binary files /dev/null and b/public/images/products-raw/tevada/TEVADA_005.png differ diff --git a/public/images/products-raw/tevada/TEVADA_006-766x1024.png b/public/images/products-raw/tevada/TEVADA_006-766x1024.png new file mode 100644 index 0000000..5db5bca Binary files /dev/null and b/public/images/products-raw/tevada/TEVADA_006-766x1024.png differ diff --git a/public/images/products-raw/tevada/TEVADA_007.png b/public/images/products-raw/tevada/TEVADA_007.png new file mode 100644 index 0000000..82b606d Binary files /dev/null and b/public/images/products-raw/tevada/TEVADA_007.png differ diff --git a/public/images/products-raw/tevada/TEVADA_008.png b/public/images/products-raw/tevada/TEVADA_008.png new file mode 100644 index 0000000..ccb59dc Binary files /dev/null and b/public/images/products-raw/tevada/TEVADA_008.png differ diff --git a/public/images/products-raw/tevada/TEVADA_009-658x1024.png b/public/images/products-raw/tevada/TEVADA_009-658x1024.png new file mode 100644 index 0000000..ad764df Binary files /dev/null and b/public/images/products-raw/tevada/TEVADA_009-658x1024.png differ diff --git a/public/images/products-raw/tevada/TEVADA_010-1024x113.png b/public/images/products-raw/tevada/TEVADA_010-1024x113.png new file mode 100644 index 0000000..9705198 Binary files /dev/null and b/public/images/products-raw/tevada/TEVADA_010-1024x113.png differ diff --git a/public/images/products-raw/tevada/TEVADA_011-990x1024.png b/public/images/products-raw/tevada/TEVADA_011-990x1024.png new file mode 100644 index 0000000..16c6d69 Binary files /dev/null and b/public/images/products-raw/tevada/TEVADA_011-990x1024.png differ diff --git a/public/images/products-raw/tevada/TEVADA_012.png b/public/images/products-raw/tevada/TEVADA_012.png new file mode 100644 index 0000000..b90d0ce Binary files /dev/null and b/public/images/products-raw/tevada/TEVADA_012.png differ diff --git a/public/images/products-raw/tevada/TEVADA_013.png b/public/images/products-raw/tevada/TEVADA_013.png new file mode 100644 index 0000000..d7d9dce Binary files /dev/null and b/public/images/products-raw/tevada/TEVADA_013.png differ diff --git a/public/images/products-raw/tevada/TEVADA_014.png b/public/images/products-raw/tevada/TEVADA_014.png new file mode 100644 index 0000000..0fa28c1 Binary files /dev/null and b/public/images/products-raw/tevada/TEVADA_014.png differ diff --git a/public/images/products-raw/tevada/TEVADA_015.png b/public/images/products-raw/tevada/TEVADA_015.png new file mode 100644 index 0000000..15a21a9 Binary files /dev/null and b/public/images/products-raw/tevada/TEVADA_015.png differ diff --git a/public/images/products-raw/tevada/TEVADA_016-1024x819.png b/public/images/products-raw/tevada/TEVADA_016-1024x819.png new file mode 100644 index 0000000..0c2df80 Binary files /dev/null and b/public/images/products-raw/tevada/TEVADA_016-1024x819.png differ diff --git a/public/images/products-raw/vineman/10-107-15.jpg b/public/images/products-raw/vineman/10-107-15.jpg new file mode 100644 index 0000000..7abdf26 Binary files /dev/null and b/public/images/products-raw/vineman/10-107-15.jpg differ diff --git a/public/images/products-raw/vineman/11-142-15.jpg b/public/images/products-raw/vineman/11-142-15.jpg new file mode 100644 index 0000000..ffac358 Binary files /dev/null and b/public/images/products-raw/vineman/11-142-15.jpg differ diff --git a/public/images/products-raw/vineman/11-155-15.jpg b/public/images/products-raw/vineman/11-155-15.jpg new file mode 100644 index 0000000..a9eb602 Binary files /dev/null and b/public/images/products-raw/vineman/11-155-15.jpg differ diff --git a/public/images/products-raw/vineman/12-120-15.jpg b/public/images/products-raw/vineman/12-120-15.jpg new file mode 100644 index 0000000..9574121 Binary files /dev/null and b/public/images/products-raw/vineman/12-120-15.jpg differ diff --git a/public/images/products-raw/vineman/13-175-15.jpg b/public/images/products-raw/vineman/13-175-15.jpg new file mode 100644 index 0000000..562192a Binary files /dev/null and b/public/images/products-raw/vineman/13-175-15.jpg differ diff --git a/public/images/products-raw/vineman/14-200-15.jpg b/public/images/products-raw/vineman/14-200-15.jpg new file mode 100644 index 0000000..afbe9d6 Binary files /dev/null and b/public/images/products-raw/vineman/14-200-15.jpg differ diff --git a/public/images/products-raw/vineman/17-190-15.jpg b/public/images/products-raw/vineman/17-190-15.jpg new file mode 100644 index 0000000..4f52cc5 Binary files /dev/null and b/public/images/products-raw/vineman/17-190-15.jpg differ diff --git a/public/images/products-raw/vineman/8-90-15.jpg b/public/images/products-raw/vineman/8-90-15.jpg new file mode 100644 index 0000000..c34f3df Binary files /dev/null and b/public/images/products-raw/vineman/8-90-15.jpg differ diff --git a/public/images/products-raw/vineman/VINEMAN-Buying-Guide.jpg b/public/images/products-raw/vineman/VINEMAN-Buying-Guide.jpg new file mode 100644 index 0000000..3df0d7f Binary files /dev/null and b/public/images/products-raw/vineman/VINEMAN-Buying-Guide.jpg differ diff --git a/public/images/products-raw/vineman/result-1-1024x355.jpg b/public/images/products-raw/vineman/result-1-1024x355.jpg new file mode 100644 index 0000000..15858d6 --- /dev/null +++ b/public/images/products-raw/vineman/result-1-1024x355.jpg @@ -0,0 +1,1606 @@ + + + + + + + +ไม่พบหน้า – Deal Plus Tech + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+
+
+
+
+
+
+

บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก

+ +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

OOPS! PAGE NOT BE FOUND

+ + Back to home page +
+
+ + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/public/images/products-raw/vineman/result-2-1024x355.jpg b/public/images/products-raw/vineman/result-2-1024x355.jpg new file mode 100644 index 0000000..c6afec4 --- /dev/null +++ b/public/images/products-raw/vineman/result-2-1024x355.jpg @@ -0,0 +1,1606 @@ + + + + + + + +ไม่พบหน้า – Deal Plus Tech + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+
+
+
+
+
+
+

บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก

+ +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

OOPS! PAGE NOT BE FOUND

+ + Back to home page +
+
+ + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/public/images/products-raw/vineman/result-3-1024x355.jpg b/public/images/products-raw/vineman/result-3-1024x355.jpg new file mode 100644 index 0000000..6f946d3 --- /dev/null +++ b/public/images/products-raw/vineman/result-3-1024x355.jpg @@ -0,0 +1,1606 @@ + + + + + + + +ไม่พบหน้า – Deal Plus Tech + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+
+
+
+
+
+
+

บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก

+ +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

OOPS! PAGE NOT BE FOUND

+ + Back to home page +
+
+ + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/public/images/products-raw/vineman/result-4-1024x355.jpg b/public/images/products-raw/vineman/result-4-1024x355.jpg new file mode 100644 index 0000000..d2bca4d --- /dev/null +++ b/public/images/products-raw/vineman/result-4-1024x355.jpg @@ -0,0 +1,1606 @@ + + + + + + + +ไม่พบหน้า – Deal Plus Tech + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+
+
+
+
+
+
+

บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก

+ +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

OOPS! PAGE NOT BE FOUND

+ + Back to home page +
+
+ + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/public/images/products-raw/vineman/result-5-1024x355.jpg b/public/images/products-raw/vineman/result-5-1024x355.jpg new file mode 100644 index 0000000..4bdb8e3 --- /dev/null +++ b/public/images/products-raw/vineman/result-5-1024x355.jpg @@ -0,0 +1,1606 @@ + + + + + + + +ไม่พบหน้า – Deal Plus Tech + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+
+
+
+
+
+
+

บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก

+ +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

OOPS! PAGE NOT BE FOUND

+ + Back to home page +
+
+ + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/public/images/products-raw/vineman/กราฟเปรียบเทียบผลการทดสอบ-1.jpg b/public/images/products-raw/vineman/กราฟเปรียบเทียบผลการทดสอบ-1.jpg new file mode 100644 index 0000000..3f5d229 --- /dev/null +++ b/public/images/products-raw/vineman/กราฟเปรียบเทียบผลการทดสอบ-1.jpg @@ -0,0 +1,1606 @@ + + + + + + + +ไม่พบหน้า – Deal Plus Tech + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+
+
+
+
+
+
+

บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก

+ +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

OOPS! PAGE NOT BE FOUND

+ + Back to home page +
+
+ + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/public/images/products-raw/vineman/กราฟเปรียบเทียบผลการทดสอบ-2.jpg b/public/images/products-raw/vineman/กราฟเปรียบเทียบผลการทดสอบ-2.jpg new file mode 100644 index 0000000..d7f8fde --- /dev/null +++ b/public/images/products-raw/vineman/กราฟเปรียบเทียบผลการทดสอบ-2.jpg @@ -0,0 +1,1606 @@ + + + + + + + +ไม่พบหน้า – Deal Plus Tech + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+
+
+
+
+
+
+

บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก

+ +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

OOPS! PAGE NOT BE FOUND

+ + Back to home page +
+
+ + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/public/images/products-raw/vineman/จุดเชื่อมของเสาค้ำยันไม่คงทน.jpg b/public/images/products-raw/vineman/จุดเชื่อมของเสาค้ำยันไม่คงทน.jpg new file mode 100644 index 0000000..4ead2c5 Binary files /dev/null and b/public/images/products-raw/vineman/จุดเชื่อมของเสาค้ำยันไม่คงทน.jpg differ diff --git a/public/images/products-raw/vineman/ตัวยึดลวดหนาม-หลุดง่าย.jpg b/public/images/products-raw/vineman/ตัวยึดลวดหนาม-หลุดง่าย.jpg new file mode 100644 index 0000000..c40447b Binary files /dev/null and b/public/images/products-raw/vineman/ตัวยึดลวดหนาม-หลุดง่าย.jpg differ diff --git a/public/images/products-raw/vineman/ตาข่ายถักปม.jpg b/public/images/products-raw/vineman/ตาข่ายถักปม.jpg new file mode 100644 index 0000000..30e1ba3 Binary files /dev/null and b/public/images/products-raw/vineman/ตาข่ายถักปม.jpg differ diff --git a/public/images/products-raw/vineman/ตาข่ายฟิคซ์ล็อค.jpg b/public/images/products-raw/vineman/ตาข่ายฟิคซ์ล็อค.jpg new file mode 100644 index 0000000..5360d9d Binary files /dev/null and b/public/images/products-raw/vineman/ตาข่ายฟิคซ์ล็อค.jpg differ diff --git a/public/images/products-raw/vineman/ตารางการคำนวณปริมาณเบื้องต้น-1024x322.jpg b/public/images/products-raw/vineman/ตารางการคำนวณปริมาณเบื้องต้น-1024x322.jpg new file mode 100644 index 0000000..1db55a7 Binary files /dev/null and b/public/images/products-raw/vineman/ตารางการคำนวณปริมาณเบื้องต้น-1024x322.jpg differ diff --git a/public/images/products-raw/vineman/ต้องหล่อปูนทำฐานรากทุกต้น.jpg b/public/images/products-raw/vineman/ต้องหล่อปูนทำฐานรากทุกต้น.jpg new file mode 100644 index 0000000..24d2396 Binary files /dev/null and b/public/images/products-raw/vineman/ต้องหล่อปูนทำฐานรากทุกต้น.jpg differ diff --git a/public/images/products-raw/vineman/นิยมใช้ฟาร์ม-แพะ-แกะ-กวาง-จิงโจ้-นกอีมู-นกกระจอกเทศ-หรือสัตว์.jpg b/public/images/products-raw/vineman/นิยมใช้ฟาร์ม-แพะ-แกะ-กวาง-จิงโจ้-นกอีมู-นกกระจอกเทศ-หรือสัตว์.jpg new file mode 100644 index 0000000..c243fa5 Binary files /dev/null and b/public/images/products-raw/vineman/นิยมใช้ฟาร์ม-แพะ-แกะ-กวาง-จิงโจ้-นกอีมู-นกกระจอกเทศ-หรือสัตว์.jpg differ diff --git a/public/images/products-raw/vineman/ผลการทดสอบ-16-ปี.jpg b/public/images/products-raw/vineman/ผลการทดสอบ-16-ปี.jpg new file mode 100644 index 0000000..1531f73 --- /dev/null +++ b/public/images/products-raw/vineman/ผลการทดสอบ-16-ปี.jpg @@ -0,0 +1,1606 @@ + + + + + + + +ไม่พบหน้า – Deal Plus Tech + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+
+
+
+
+
+
+

บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก

+ +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

OOPS! PAGE NOT BE FOUND

+ + Back to home page +
+
+ + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/public/images/products-raw/vineman/ผลการทดสอบความทนทาน.jpg b/public/images/products-raw/vineman/ผลการทดสอบความทนทาน.jpg new file mode 100644 index 0000000..33184e1 --- /dev/null +++ b/public/images/products-raw/vineman/ผลการทดสอบความทนทาน.jpg @@ -0,0 +1,1606 @@ + + + + + + + +ไม่พบหน้า – Deal Plus Tech + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+
+
+
+
+
+
+

บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก

+ +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

OOPS! PAGE NOT BE FOUND

+ + Back to home page +
+
+ + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/public/images/products-raw/vineman/ฟิคซ์ล็อค.jpg b/public/images/products-raw/vineman/ฟิคซ์ล็อค.jpg new file mode 100644 index 0000000..40a09dc Binary files /dev/null and b/public/images/products-raw/vineman/ฟิคซ์ล็อค.jpg differ diff --git a/public/images/products-raw/vineman/ยืดหยุ่นสูง-300x294.jpg b/public/images/products-raw/vineman/ยืดหยุ่นสูง-300x294.jpg new file mode 100644 index 0000000..4ef581e Binary files /dev/null and b/public/images/products-raw/vineman/ยืดหยุ่นสูง-300x294.jpg differ diff --git a/public/images/products-raw/vineman/ระบบรั้วไวน์แมน-Vineman-e1613286324569-1024x880.jpg b/public/images/products-raw/vineman/ระบบรั้วไวน์แมน-Vineman-e1613286324569-1024x880.jpg new file mode 100644 index 0000000..4d2422b Binary files /dev/null and b/public/images/products-raw/vineman/ระบบรั้วไวน์แมน-Vineman-e1613286324569-1024x880.jpg differ diff --git a/public/images/products-raw/vineman/ระบบรั้วไวน์แมน-ระยะห่างของเสา-5-8-เมตร-1024x302.jpg b/public/images/products-raw/vineman/ระบบรั้วไวน์แมน-ระยะห่างของเสา-5-8-เมตร-1024x302.jpg new file mode 100644 index 0000000..9d30282 Binary files /dev/null and b/public/images/products-raw/vineman/ระบบรั้วไวน์แมน-ระยะห่างของเสา-5-8-เมตร-1024x302.jpg differ diff --git a/public/images/products-raw/vineman/ระบบรั้วไวน์แมน.jpg b/public/images/products-raw/vineman/ระบบรั้วไวน์แมน.jpg new file mode 100644 index 0000000..9ed3c97 Binary files /dev/null and b/public/images/products-raw/vineman/ระบบรั้วไวน์แมน.jpg differ diff --git a/public/images/products-raw/vineman/รั้วโปร่งโล่งสบายตา-1024x1013.jpg b/public/images/products-raw/vineman/รั้วโปร่งโล่งสบายตา-1024x1013.jpg new file mode 100644 index 0000000..069cb06 Binary files /dev/null and b/public/images/products-raw/vineman/รั้วโปร่งโล่งสบายตา-1024x1013.jpg differ diff --git a/public/images/products-raw/vineman/รั้วใช้กับฟาร์มปศุสัตว์ทั่วไป.jpg b/public/images/products-raw/vineman/รั้วใช้กับฟาร์มปศุสัตว์ทั่วไป.jpg new file mode 100644 index 0000000..90d2a5d Binary files /dev/null and b/public/images/products-raw/vineman/รั้วใช้กับฟาร์มปศุสัตว์ทั่วไป.jpg differ diff --git a/public/images/products-raw/vineman/ลวด.png b/public/images/products-raw/vineman/ลวด.png new file mode 100644 index 0000000..5f49e70 Binary files /dev/null and b/public/images/products-raw/vineman/ลวด.png differ diff --git a/public/images/products-raw/vineman/ลวดหนาม.jpg b/public/images/products-raw/vineman/ลวดหนาม.jpg new file mode 100644 index 0000000..665a3fc Binary files /dev/null and b/public/images/products-raw/vineman/ลวดหนาม.jpg differ diff --git a/public/images/products-raw/vineman/ลวดหนามซิงค์อลูมิเนียม-ไวน์แมน-1024x673.jpg b/public/images/products-raw/vineman/ลวดหนามซิงค์อลูมิเนียม-ไวน์แมน-1024x673.jpg new file mode 100644 index 0000000..3808f50 Binary files /dev/null and b/public/images/products-raw/vineman/ลวดหนามซิงค์อลูมิเนียม-ไวน์แมน-1024x673.jpg differ diff --git a/public/images/products-raw/vineman/ลวดหนามซิงค์อลูมิเนียม.jpg b/public/images/products-raw/vineman/ลวดหนามซิงค์อลูมิเนียม.jpg new file mode 100644 index 0000000..278b5cf Binary files /dev/null and b/public/images/products-raw/vineman/ลวดหนามซิงค์อลูมิเนียม.jpg differ diff --git a/public/images/products-raw/vineman/เกิดรอยร้าวง่าย.jpg b/public/images/products-raw/vineman/เกิดรอยร้าวง่าย.jpg new file mode 100644 index 0000000..3136c08 Binary files /dev/null and b/public/images/products-raw/vineman/เกิดรอยร้าวง่าย.jpg differ diff --git a/public/images/products-raw/vineman/เทคนิคน่ารู้-ก่อนเลือกใช้-ระบบรั้วตาข่าย-488x1024.jpg b/public/images/products-raw/vineman/เทคนิคน่ารู้-ก่อนเลือกใช้-ระบบรั้วตาข่าย-488x1024.jpg new file mode 100644 index 0000000..d0e51c7 Binary files /dev/null and b/public/images/products-raw/vineman/เทคนิคน่ารู้-ก่อนเลือกใช้-ระบบรั้วตาข่าย-488x1024.jpg differ diff --git a/public/images/products-raw/vineman/เปราะ-แตกหักง่าย.jpg b/public/images/products-raw/vineman/เปราะ-แตกหักง่าย.jpg new file mode 100644 index 0000000..5094254 Binary files /dev/null and b/public/images/products-raw/vineman/เปราะ-แตกหักง่าย.jpg differ diff --git a/public/images/products-raw/vineman/เสาค้ำยันไม่แข็งแรง.jpg b/public/images/products-raw/vineman/เสาค้ำยันไม่แข็งแรง.jpg new file mode 100644 index 0000000..c5ffad2 Binary files /dev/null and b/public/images/products-raw/vineman/เสาค้ำยันไม่แข็งแรง.jpg differ diff --git a/public/images/products-raw/vineman/เสาปูน-ระยะห่างของเสา-4-6-เมตร-1024x299.jpg b/public/images/products-raw/vineman/เสาปูน-ระยะห่างของเสา-4-6-เมตร-1024x299.jpg new file mode 100644 index 0000000..e1d33ed Binary files /dev/null and b/public/images/products-raw/vineman/เสาปูน-ระยะห่างของเสา-4-6-เมตร-1024x299.jpg differ diff --git a/public/images/products-raw/vineman/เสาไม้เนื้อแข็ง-ระยะห่างของเสา-4-6-เมตร-1024x295.jpg b/public/images/products-raw/vineman/เสาไม้เนื้อแข็ง-ระยะห่างของเสา-4-6-เมตร-1024x295.jpg new file mode 100644 index 0000000..da87aef Binary files /dev/null and b/public/images/products-raw/vineman/เสาไม้เนื้อแข็ง-ระยะห่างของเสา-4-6-เมตร-1024x295.jpg differ diff --git a/public/images/products-raw/vineman/แข็งแรง-ติดตั้งง่าย-ได้ทุกภูมิทัศน์.jpg b/public/images/products-raw/vineman/แข็งแรง-ติดตั้งง่าย-ได้ทุกภูมิทัศน์.jpg new file mode 100644 index 0000000..e466e8f Binary files /dev/null and b/public/images/products-raw/vineman/แข็งแรง-ติดตั้งง่าย-ได้ทุกภูมิทัศน์.jpg differ diff --git a/public/images/products-raw/vineman/โรงงาน-ไวน์แมน.jpg b/public/images/products-raw/vineman/โรงงาน-ไวน์แมน.jpg new file mode 100644 index 0000000..10007e7 --- /dev/null +++ b/public/images/products-raw/vineman/โรงงาน-ไวน์แมน.jpg @@ -0,0 +1,1606 @@ + + + + + + + +ไม่พบหน้า – Deal Plus Tech + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+
+
+
+
+
+
+

บริษัท ดีล พลัส เทค จำกัด เราเป็นผู้เชียวชาญด้านระบบน้ำ ให้คำแนะนำและจำหน่าย ท่อ PPR ตราช้าง ท่อพีพีอาร์ ท่อ PPR ท่อ HDPE Thai PPR รั้วตาข่าย คุณภาพสูง ราคาถูก

+ +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

OOPS! PAGE NOT BE FOUND

+ + Back to home page +
+
+ + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/public/images/products-raw/vineman/ไวน์แมน-รั้วตาข่ายกึ่งสปริง.jpg b/public/images/products-raw/vineman/ไวน์แมน-รั้วตาข่ายกึ่งสปริง.jpg new file mode 100644 index 0000000..3bbf010 Binary files /dev/null and b/public/images/products-raw/vineman/ไวน์แมน-รั้วตาข่ายกึ่งสปริง.jpg differ diff --git a/public/images/products-raw/xylent/XYLENT_001-1024x974.png b/public/images/products-raw/xylent/XYLENT_001-1024x974.png new file mode 100644 index 0000000..f0656a1 Binary files /dev/null and b/public/images/products-raw/xylent/XYLENT_001-1024x974.png differ diff --git a/public/images/products-raw/xylent/XYLENT_002.png b/public/images/products-raw/xylent/XYLENT_002.png new file mode 100644 index 0000000..e3038a9 Binary files /dev/null and b/public/images/products-raw/xylent/XYLENT_002.png differ diff --git a/public/images/products-raw/xylent/XYLENT_003-1024x185.png b/public/images/products-raw/xylent/XYLENT_003-1024x185.png new file mode 100644 index 0000000..e7787a7 Binary files /dev/null and b/public/images/products-raw/xylent/XYLENT_003-1024x185.png differ diff --git a/public/images/products-raw/xylent/XYLENT_004-805x1024.png b/public/images/products-raw/xylent/XYLENT_004-805x1024.png new file mode 100644 index 0000000..fff541c Binary files /dev/null and b/public/images/products-raw/xylent/XYLENT_004-805x1024.png differ diff --git a/public/images/products-raw/xylent/XYLENT_005-1024x487.png b/public/images/products-raw/xylent/XYLENT_005-1024x487.png new file mode 100644 index 0000000..ef87e19 Binary files /dev/null and b/public/images/products-raw/xylent/XYLENT_005-1024x487.png differ diff --git a/public/images/products-raw/xylent/XYLENT_006.png b/public/images/products-raw/xylent/XYLENT_006.png new file mode 100644 index 0000000..bd33580 Binary files /dev/null and b/public/images/products-raw/xylent/XYLENT_006.png differ diff --git a/public/images/products-raw/xylent/XYLENT_007-1024x474.png b/public/images/products-raw/xylent/XYLENT_007-1024x474.png new file mode 100644 index 0000000..22491d9 Binary files /dev/null and b/public/images/products-raw/xylent/XYLENT_007-1024x474.png differ diff --git a/public/images/products-raw/xylent/XYLENT_008-1024x357.png b/public/images/products-raw/xylent/XYLENT_008-1024x357.png new file mode 100644 index 0000000..7e33619 Binary files /dev/null and b/public/images/products-raw/xylent/XYLENT_008-1024x357.png differ diff --git a/public/images/products-raw/xylent/XYLENT_009-1024x418.png b/public/images/products-raw/xylent/XYLENT_009-1024x418.png new file mode 100644 index 0000000..3198874 Binary files /dev/null and b/public/images/products-raw/xylent/XYLENT_009-1024x418.png differ diff --git a/public/images/products-raw/xylent/XYLENT_010-1024x309.png b/public/images/products-raw/xylent/XYLENT_010-1024x309.png new file mode 100644 index 0000000..608a89e Binary files /dev/null and b/public/images/products-raw/xylent/XYLENT_010-1024x309.png differ diff --git a/public/images/products-raw/xylent/XYLENT_011-1024x325.png b/public/images/products-raw/xylent/XYLENT_011-1024x325.png new file mode 100644 index 0000000..5cdaf89 Binary files /dev/null and b/public/images/products-raw/xylent/XYLENT_011-1024x325.png differ diff --git a/public/images/products-raw/xylent/XYLENT_012.png b/public/images/products-raw/xylent/XYLENT_012.png new file mode 100644 index 0000000..2602beb Binary files /dev/null and b/public/images/products-raw/xylent/XYLENT_012.png differ diff --git a/public/images/products-raw/xylent/XYLENT_013.png b/public/images/products-raw/xylent/XYLENT_013.png new file mode 100644 index 0000000..d991a88 Binary files /dev/null and b/public/images/products-raw/xylent/XYLENT_013.png differ diff --git a/public/images/products-raw/xylent/XYLENT_014.png b/public/images/products-raw/xylent/XYLENT_014.png new file mode 100644 index 0000000..d92a9a7 Binary files /dev/null and b/public/images/products-raw/xylent/XYLENT_014.png differ diff --git a/public/images/products-raw/xylent/XYLENT_015.png b/public/images/products-raw/xylent/XYLENT_015.png new file mode 100644 index 0000000..21e6552 Binary files /dev/null and b/public/images/products-raw/xylent/XYLENT_015.png differ diff --git a/public/images/products-raw/xylent/XYLENT_016-1024x617.png b/public/images/products-raw/xylent/XYLENT_016-1024x617.png new file mode 100644 index 0000000..6ab21c9 Binary files /dev/null and b/public/images/products-raw/xylent/XYLENT_016-1024x617.png differ diff --git a/public/images/products-raw/xylent/XYLENT_017.png b/public/images/products-raw/xylent/XYLENT_017.png new file mode 100644 index 0000000..34a7fba Binary files /dev/null and b/public/images/products-raw/xylent/XYLENT_017.png differ diff --git a/public/images/products-raw/xylent/XYLENT_018-1024x848.png b/public/images/products-raw/xylent/XYLENT_018-1024x848.png new file mode 100644 index 0000000..87a6ae4 Binary files /dev/null and b/public/images/products-raw/xylent/XYLENT_018-1024x848.png differ diff --git a/public/images/products-raw/xylent/XYLENT_022.png b/public/images/products-raw/xylent/XYLENT_022.png new file mode 100644 index 0000000..510ca75 Binary files /dev/null and b/public/images/products-raw/xylent/XYLENT_022.png differ diff --git a/public/images/products-raw/xylent/XYLENT_023.png b/public/images/products-raw/xylent/XYLENT_023.png new file mode 100644 index 0000000..0124952 Binary files /dev/null and b/public/images/products-raw/xylent/XYLENT_023.png differ diff --git a/public/images/products-raw/xylent/XYLENT_024.png b/public/images/products-raw/xylent/XYLENT_024.png new file mode 100644 index 0000000..4a3df81 Binary files /dev/null and b/public/images/products-raw/xylent/XYLENT_024.png differ diff --git a/public/images/products-raw/xylent/XYLENT_025.png b/public/images/products-raw/xylent/XYLENT_025.png new file mode 100644 index 0000000..7746f77 Binary files /dev/null and b/public/images/products-raw/xylent/XYLENT_025.png differ diff --git a/public/images/products-raw/xylent/XYLENT_026.png b/public/images/products-raw/xylent/XYLENT_026.png new file mode 100644 index 0000000..1a740d4 Binary files /dev/null and b/public/images/products-raw/xylent/XYLENT_026.png differ diff --git a/public/images/products-raw/xylent/XYLENT_027.png b/public/images/products-raw/xylent/XYLENT_027.png new file mode 100644 index 0000000..5748759 Binary files /dev/null and b/public/images/products-raw/xylent/XYLENT_027.png differ diff --git a/public/images/products-raw/xylent/XYLENT_028.png b/public/images/products-raw/xylent/XYLENT_028.png new file mode 100644 index 0000000..384fd52 Binary files /dev/null and b/public/images/products-raw/xylent/XYLENT_028.png differ diff --git a/public/images/products-raw/xylent/XYLENT_029.png b/public/images/products-raw/xylent/XYLENT_029.png new file mode 100644 index 0000000..38a1205 Binary files /dev/null and b/public/images/products-raw/xylent/XYLENT_029.png differ diff --git a/public/images/products-raw/xylent/XYLENT_030.png b/public/images/products-raw/xylent/XYLENT_030.png new file mode 100644 index 0000000..baf91d7 Binary files /dev/null and b/public/images/products-raw/xylent/XYLENT_030.png differ diff --git a/public/images/products-raw/xylent/XYLENT_031-771x1024.png b/public/images/products-raw/xylent/XYLENT_031-771x1024.png new file mode 100644 index 0000000..9f2a534 Binary files /dev/null and b/public/images/products-raw/xylent/XYLENT_031-771x1024.png differ diff --git a/public/images/products-raw/xylent/XYLENT_032.png b/public/images/products-raw/xylent/XYLENT_032.png new file mode 100644 index 0000000..344bf79 Binary files /dev/null and b/public/images/products-raw/xylent/XYLENT_032.png differ diff --git a/public/images/products-raw/xylent/XYLENT_033.png b/public/images/products-raw/xylent/XYLENT_033.png new file mode 100644 index 0000000..779c003 Binary files /dev/null and b/public/images/products-raw/xylent/XYLENT_033.png differ diff --git a/public/images/products-raw/xylent/XYLENT_034.png b/public/images/products-raw/xylent/XYLENT_034.png new file mode 100644 index 0000000..b0b3904 Binary files /dev/null and b/public/images/products-raw/xylent/XYLENT_034.png differ diff --git a/public/images/products-raw/xylent/XYLENT_035-1024x409.png b/public/images/products-raw/xylent/XYLENT_035-1024x409.png new file mode 100644 index 0000000..6842fcb Binary files /dev/null and b/public/images/products-raw/xylent/XYLENT_035-1024x409.png differ diff --git a/public/images/realflex/realflex-001.png b/public/images/realflex/realflex-001.png new file mode 100644 index 0000000..34bc9db Binary files /dev/null and b/public/images/realflex/realflex-001.png differ diff --git a/public/images/realflex/realflex-002.png b/public/images/realflex/realflex-002.png new file mode 100644 index 0000000..749173f Binary files /dev/null and b/public/images/realflex/realflex-002.png differ diff --git a/public/images/realflex/realflex-003.png b/public/images/realflex/realflex-003.png new file mode 100644 index 0000000..e6152e2 Binary files /dev/null and b/public/images/realflex/realflex-003.png differ diff --git a/public/images/realflex/realflex-005.png b/public/images/realflex/realflex-005.png new file mode 100644 index 0000000..f085d31 Binary files /dev/null and b/public/images/realflex/realflex-005.png differ diff --git a/public/images/realflex/realflex-020.png b/public/images/realflex/realflex-020.png new file mode 100644 index 0000000..7632256 Binary files /dev/null and b/public/images/realflex/realflex-020.png differ diff --git a/public/images/realflex/realflex-021.png b/public/images/realflex/realflex-021.png new file mode 100644 index 0000000..1b544fe Binary files /dev/null and b/public/images/realflex/realflex-021.png differ diff --git a/public/images/realflex/realflex-023.png b/public/images/realflex/realflex-023.png new file mode 100644 index 0000000..45b9ca2 Binary files /dev/null and b/public/images/realflex/realflex-023.png differ diff --git a/public/images/realflex/realflex-024.png b/public/images/realflex/realflex-024.png new file mode 100644 index 0000000..75ba2aa Binary files /dev/null and b/public/images/realflex/realflex-024.png differ diff --git a/public/images/realflex/realflex-025.png b/public/images/realflex/realflex-025.png new file mode 100644 index 0000000..d2b841f Binary files /dev/null and b/public/images/realflex/realflex-025.png differ diff --git a/public/images/realflex/realflex-026.png b/public/images/realflex/realflex-026.png new file mode 100644 index 0000000..09aaa70 Binary files /dev/null and b/public/images/realflex/realflex-026.png differ diff --git a/public/images/realflex/realflex-030.png b/public/images/realflex/realflex-030.png new file mode 100644 index 0000000..9b574b5 Binary files /dev/null and b/public/images/realflex/realflex-030.png differ diff --git a/public/images/realflex/realflex-031.png b/public/images/realflex/realflex-031.png new file mode 100644 index 0000000..7cf8009 Binary files /dev/null and b/public/images/realflex/realflex-031.png differ diff --git a/public/images/realflex/realflex-032.png b/public/images/realflex/realflex-032.png new file mode 100644 index 0000000..56fc972 Binary files /dev/null and b/public/images/realflex/realflex-032.png differ diff --git a/public/images/realflex/realflex-033.png b/public/images/realflex/realflex-033.png new file mode 100644 index 0000000..8b6cfde Binary files /dev/null and b/public/images/realflex/realflex-033.png differ diff --git a/public/images/realflex/realflex-034.png b/public/images/realflex/realflex-034.png new file mode 100644 index 0000000..df25a87 Binary files /dev/null and b/public/images/realflex/realflex-034.png differ diff --git a/public/images/realflex/realflex-035.png b/public/images/realflex/realflex-035.png new file mode 100644 index 0000000..31be10b Binary files /dev/null and b/public/images/realflex/realflex-035.png differ diff --git a/public/images/thermobreak/thermobreak-banner.png b/public/images/thermobreak/thermobreak-banner.png new file mode 100644 index 0000000..18a846e Binary files /dev/null and b/public/images/thermobreak/thermobreak-banner.png differ diff --git a/public/images/thermobreak/thermobreak-ls.png b/public/images/thermobreak/thermobreak-ls.png new file mode 100644 index 0000000..d304334 Binary files /dev/null and b/public/images/thermobreak/thermobreak-ls.png differ diff --git a/public/images/thermobreak/thermobreak-raised-floor.png b/public/images/thermobreak/thermobreak-raised-floor.png new file mode 100644 index 0000000..2796700 Binary files /dev/null and b/public/images/thermobreak/thermobreak-raised-floor.png differ diff --git a/public/images/thermobreak/thermobreak-solarblock.png b/public/images/thermobreak/thermobreak-solarblock.png new file mode 100644 index 0000000..28be15d Binary files /dev/null and b/public/images/thermobreak/thermobreak-solarblock.png differ diff --git a/public/images/valve-In01.jpg b/public/images/valve-In01.jpg new file mode 100644 index 0000000..19a85a5 Binary files /dev/null and b/public/images/valve-In01.jpg differ diff --git a/public/images/valve-In02.jpg b/public/images/valve-In02.jpg new file mode 100644 index 0000000..74d7586 Binary files /dev/null and b/public/images/valve-In02.jpg differ diff --git a/public/images/valve-In03.jpg b/public/images/valve-In03.jpg new file mode 100644 index 0000000..0a4d43b Binary files /dev/null and b/public/images/valve-In03.jpg differ diff --git a/public/images/valve-In05.jpg b/public/images/valve-In05.jpg new file mode 100644 index 0000000..c61b2e7 Binary files /dev/null and b/public/images/valve-In05.jpg differ diff --git a/public/images/valve-In08.jpg b/public/images/valve-In08.jpg new file mode 100644 index 0000000..3a24dc8 Binary files /dev/null and b/public/images/valve-In08.jpg differ diff --git a/public/images/valve-In10.jpg b/public/images/valve-In10.jpg new file mode 100644 index 0000000..5cb15d1 Binary files /dev/null and b/public/images/valve-In10.jpg differ diff --git a/public/images/valve-In15.jpg b/public/images/valve-In15.jpg new file mode 100644 index 0000000..f8f90bb Binary files /dev/null and b/public/images/valve-In15.jpg differ diff --git a/public/images/valve-In17.jpg b/public/images/valve-In17.jpg new file mode 100644 index 0000000..f8e924e Binary files /dev/null and b/public/images/valve-In17.jpg differ diff --git a/public/images/water-pump-banner.jpg b/public/images/water-pump-banner.jpg new file mode 100644 index 0000000..186454c Binary files /dev/null and b/public/images/water-pump-banner.jpg differ diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..7896211 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,12 @@ +{ + "extends": "astro/tsconfigs/strict", + "compilerOptions": { + "baseUrl": ".", + "paths": { + "@/*": ["./src/*"], + "@components/*": ["./src/components/*"], + "@layouts/*": ["./src/layouts/*"], + "@styles/*": ["./src/styles/*"] + } + } +}