@h3ravel/url
Version:
Request-aware URI builder and URL manipulation utilities for H3ravel.
71 lines • 1.53 kB
JSON
{
"name": "@h3ravel/url",
"version": "1.0.15",
"description": "Request-aware URI builder and URL manipulation utilities for H3ravel.",
"h3ravel": {
"providers": [
"UrlServiceProvider"
]
},
"type": "module",
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./*": "./*"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"homepage": "https://h3ravel.toneflix.net",
"repository": {
"type": "git",
"url": "git+https://github.com/h3ravel/framework.git",
"directory": "packages/url"
},
"keywords": [
"h3ravel",
"modern",
"web",
"H3",
"framework",
"nodejs",
"typescript",
"laravel",
"url",
"uri",
"builder"
],
"dependencies": {
"@h3ravel/support": "^0.15.6",
"@h3ravel/shared": "^0.27.7"
},
"peerDependencies": {
"@h3ravel/core": "^1.21.6",
"@h3ravel/config": "^1.4.18"
},
"devDependencies": {
"typescript": "^5.4.0"
},
"peerDependenciesMeta": {
"@h3ravel/config": {
"optional": true
}
},
"scripts": {
"barrel": "barrelsby --directory src --delete --singleQuotes",
"build": "tsdown --config-loader unconfig",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"lint": "eslint . --ext .ts",
"test": "jest --passWithNoTests",
"version-patch": "pnpm version patch"
}
}