feat: Add Be and tbd skill, also added Roadmap file

This commit is contained in:
2026-05-10 16:32:12 -04:00
parent 3500ade13f
commit 0bb8885802
29587 changed files with 10611695 additions and 0 deletions

35
Skills/@be/node_modules/url-toolkit/package.json generated vendored Normal file
View File

@@ -0,0 +1,35 @@
{
"name": "url-toolkit",
"version": "2.1.2",
"description": "Build an absolute URL from a base URL and a relative URL (RFC 1808). No dependencies!",
"main": "src/url-toolkit.js",
"types": "src/url-toolkit.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"pretest": "npm run lint",
"test": "mocha --recursive test",
"lint": "jshint src/ test/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tjenkinson/url-toolkit.git"
},
"keywords": [
"url",
"relative",
"absolute",
"parser"
],
"author": "Tom Jenkinson <tjcode@outlook.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/tjenkinson/url-toolkit/issues"
},
"homepage": "https://github.com/tjenkinson/url-toolkit#readme",
"devDependencies": {
"jshint": "^2.9.4",
"mocha": "^4.0.1"
}
}