You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
935 B
39 lines
935 B
{
|
|
"name": "ufo",
|
|
"version": "1.0.1",
|
|
"description": "URL utils for humans",
|
|
"repository": "unjs/ufo",
|
|
"license": "MIT",
|
|
"sideEffects": false,
|
|
"exports": {
|
|
".": {
|
|
"require": "./dist/index.cjs",
|
|
"import": "./dist/index.mjs"
|
|
},
|
|
"./*": "./*"
|
|
},
|
|
"main": "./dist/index.cjs",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"devDependencies": {
|
|
"@types/node": "^18.11.9",
|
|
"@vitest/coverage-c8": "^0.25.3",
|
|
"eslint": "^8.28.0",
|
|
"eslint-config-unjs": "^0.0.2",
|
|
"standard-version": "^9.5.0",
|
|
"typescript": "^4.9.3",
|
|
"unbuild": "^1.0.1",
|
|
"vitest": "^0.25.3"
|
|
},
|
|
"packageManager": "pnpm@7.17.1",
|
|
"scripts": {
|
|
"build": "unbuild",
|
|
"dev": "vitest",
|
|
"lint": "eslint --ext .ts .",
|
|
"release": "pnpm test && standard-version && git push --follow-tags && pnpm publish",
|
|
"test": "pnpm lint && vitest run"
|
|
}
|
|
}
|