Update dashboard, kb, memory +4 more (+28 ~18 -1)

This commit is contained in:
Echo
2026-02-06 14:25:10 +00:00
parent 7f64d5054a
commit 19d178268a
6767 changed files with 1346472 additions and 1282 deletions

51
node_modules/data-urls/package.json generated vendored Normal file
View File

@@ -0,0 +1,51 @@
{
"name": "data-urls",
"description": "Parses data: URLs",
"keywords": [
"data url",
"data uri",
"data:",
"http",
"fetch",
"whatwg"
],
"version": "7.0.0",
"author": "Domenic Denicola <d@domenic.me> (https://domenic.me/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jsdom/data-urls.git"
},
"main": "lib/parser.js",
"files": [
"lib/"
],
"scripts": {
"test": "node --test",
"coverage": "c8 node --test --experimental-test-coverage",
"lint": "eslint",
"pretest": "node scripts/get-latest-platform-tests.mjs"
},
"dependencies": {
"whatwg-mimetype": "^5.0.0",
"whatwg-url": "^16.0.0"
},
"devDependencies": {
"@domenic/eslint-config": "^4.1.0",
"c8": "^10.1.3",
"eslint": "^9.39.2",
"globals": "^17.3.0"
},
"engines": {
"node": "^20.19.0 || ^22.12.0 || >=24.0.0"
},
"c8": {
"reporter": [
"html"
],
"exclude": [
"scripts/",
"test/"
]
}
}