vfetcher
Version:
Vue composables for fetching data, based on unjs/ofetch
74 lines • 1.74 kB
JSON
{
"name": "vfetcher",
"type": "module",
"version": "0.9.0",
"private": false,
"description": "Vue composables for fetching data, based on unjs/ofetch",
"author": "s3xysteak",
"license": "MIT",
"homepage": "https://github.com/s3xysteak/vfetcher",
"repository": {
"type": "git",
"url": "https://github.com/s3xysteak/vfetcher.git"
},
"bugs": "https://github.com/s3xysteak/vfetcher/issues",
"keywords": [
"type",
"utils",
"fetch",
"composables",
"vue",
"request",
"ofetch"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./ofetch": {
"types": "./dist/ofetch.d.ts",
"import": "./dist/ofetch.mjs",
"require": "./dist/ofetch.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"ofetch": "^1.4.1"
},
"devDependencies": {
"@antfu/eslint-config": "^3.8.0",
"@types/node": "^22.8.1",
"bumpp": "^9.7.1",
"eslint": "^9.13.0",
"esno": "^4.8.0",
"h3": "^1.13.0",
"jsdom": "^25.0.1",
"listhen": "^1.9.0",
"typescript": "^5.6.3",
"ufo": "^1.5.4",
"unbuild": "^2.0.0",
"vitest": "^2.1.3",
"vue": "^3.5.12"
},
"scripts": {
"build": "pnpm type:check && unbuild",
"build:only": "unbuild",
"type:check": "tsc",
"test": "vitest",
"test:once": "vitest run",
"release": "tsc && bumpp",
"publish:ci": "pnpm publish --access public --no-git-checks",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
}
}