47 lines
1.2 KiB
JSON
Raw Normal View History

2024-05-15 12:08:59 +08:00
{
"name": "ufo",
2025-03-21 15:49:12 +08:00
"version": "1.4.0",
2024-05-15 12:08:59 +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": {
2025-03-21 15:49:12 +08:00
"build": "automd && unbuild",
"automd": "automd",
2024-05-15 12:08:59 +08:00
"dev": "vitest",
"lint": "eslint --ext .ts . && prettier -c src test",
"lint:fix": "eslint --fix --ext .ts . && prettier -w src test",
"prepack": "pnpm build",
"release": "pnpm test && changelogen --release && npm publish && git push --follow-tags",
2025-03-21 15:49:12 +08:00
"test": "pnpm lint && vitest run --typecheck"
2024-05-15 12:08:59 +08:00
},
"devDependencies": {
2025-03-21 15:49:12 +08:00
"@types/node": "^20.11.16",
"@vitest/coverage-v8": "^1.2.2",
"automd": "^0.1.1",
2024-05-15 12:08:59 +08:00
"changelogen": "^0.5.5",
2025-03-21 15:49:12 +08:00
"eslint": "^8.56.0",
2024-05-15 12:08:59 +08:00
"eslint-config-unjs": "^0.2.1",
2025-03-21 15:49:12 +08:00
"jiti": "^1.21.0",
"prettier": "^3.2.5",
"typescript": "^5.3.3",
2024-05-15 12:08:59 +08:00
"unbuild": "^2.0.0",
2025-03-21 15:49:12 +08:00
"untyped": "^1.4.2",
"vitest": "^1.2.2"
2024-05-15 12:08:59 +08:00
},
2025-03-21 15:49:12 +08:00
"packageManager": "pnpm@8.15.1"
2024-05-15 12:08:59 +08:00
}