UNPKG

url-from

Version:

Type-safe URL generator with RFC3986 encoding support

63 lines (62 loc) 1.95 kB
{ "name": "url-from", "version": "1.0.0", "description": "Type-safe URL generator with RFC3986 encoding support", "keywords": [ "url", "query", "querystring", "rfc3986", "typescript", "typesafe", "searchparams", "encode" ], "main": "./lib/index.js", "module": "./module/index.js", "typings": "./lib/index.d.ts", "files": [ "lib", "module", "!**/__tests__" ], "scripts": { "build": "yarn clean && yarn build:lib && yarn build:module", "build:lib": "tsc -p ./tsconfig.json", "build:module": "tsc -p ./tsconfig.module.json", "clean": "del-cli lib module", "format": "yarn format:write", "format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,yml,yaml,md,html}\"", "format:write": "prettier --write \"**/*.{js,jsx,ts,tsx,json,yml,yaml,md,html}\"", "test": "jest", "versionup:major": "changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major", "versionup:minor": "changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor", "versionup:patch": "changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch" }, "repository": { "type": "git", "url": "git+https://github.com/misuken-now/url-from.git" }, "author": "misuken", "license": "MIT", "bugs": { "url": "https://github.com/misuken-now/url-from/issues" }, "homepage": "https://github.com/misuken-now/url-from#readme", "devDependencies": { "@power-doctest/markdown": "^5.3.2", "@power-doctest/tester": "^5.3.2", "@types/jest": "^29.5.14", "del-cli": "^6.0.0", "generate-changelog": "^1.8.0", "globby": "^11.1.0", "jest": "^29.7.0", "prettier": "^3.3.3", "ts-jest": "^29.2.5", "typescript": "^5.6.3" }, "peerDependencies": { "typescript": ">=4.7.2" }, "packageManager": "yarn@3.5.0" }