tpmjs/packages/tools/official/url-parse/package.json
Ajax Davis 0d93366659 fix: bump url-parse to 0.2.0 for republish
0.1.0 was already published in a previous attempt.
2026-01-01 00:09:33 +10:00

60 lines
1.5 KiB
JSON

{
"name": "@tpmjs/tools-url-parse",
"version": "0.2.0",
"description": "Parse URL into components using the URL Web API",
"type": "module",
"keywords": ["tpmjs", "data", "url", "parse", "uri"],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": ["dist"],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"type-check": "tsc --noEmit",
"clean": "rm -rf dist .turbo"
},
"devDependencies": {
"@tpmjs/tsconfig": "workspace:*",
"tsup": "^8.3.5",
"typescript": "^5.9.3"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/anthropics/tpmjs.git",
"directory": "packages/tools/official/url-parse"
},
"homepage": "https://tpmjs.com",
"license": "MIT",
"tpmjs": {
"category": "data",
"frameworks": ["vercel-ai"],
"tools": [
{
"name": "urlParseTool",
"description": "Parse URL into protocol, hostname, port, pathname, search params, and hash",
"parameters": [
{
"name": "url",
"type": "string",
"description": "The URL string to parse",
"required": true
}
],
"returns": {
"type": "UrlParseResult",
"description": "Object with all URL components and parsed search parameters"
}
}
]
},
"dependencies": {
"ai": "6.0.0-beta.124"
}
}