47 lines
1.2 KiB
JSON
Raw Normal View History

2023-12-13 14:12:13 +08:00
{
"name": "ufo",
2024-07-30 12:28:12 +08:00
"version": "1.5.4",
2023-12-13 14:12:13 +08:00
"description": "URL utils for humans",
"repository": "unjs/ufo",
"license": "MIT",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
},
"./*": "./*"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
2024-07-30 12:28:12 +08:00
"build": "automd && unbuild",
"automd": "automd",
2023-12-13 14:12:13 +08:00
"dev": "vitest",
2024-07-30 12:28:12 +08:00
"lint": "eslint . && prettier -c src test",
"lint:fix": "eslint --fix . && prettier -w src test",
2023-12-13 14:12:13 +08:00
"prepack": "pnpm build",
"release": "pnpm test && changelogen --release && npm publish && git push --follow-tags",
2024-07-30 12:28:12 +08:00
"test": "pnpm lint && vitest run --typecheck"
2023-12-13 14:12:13 +08:00
},
"devDependencies": {
2024-07-30 12:28:12 +08:00
"@types/node": "^20.14.10",
"@vitest/coverage-v8": "^2.0.3",
"automd": "^0.3.8",
2023-12-13 14:12:13 +08:00
"changelogen": "^0.5.5",
2024-07-30 12:28:12 +08:00
"eslint": "^9.7.0",
"eslint-config-unjs": "^0.3.2",
"jiti": "^1.21.6",
"prettier": "^3.3.3",
"typescript": "^5.5.3",
2023-12-13 14:12:13 +08:00
"unbuild": "^2.0.0",
2024-07-30 12:28:12 +08:00
"untyped": "^1.4.2",
"vitest": "^2.0.3"
2023-12-13 14:12:13 +08:00
},
2024-07-30 12:28:12 +08:00
"packageManager": "pnpm@9.5.0"
2023-12-13 14:12:13 +08:00
}