Files
vue-vben-admin/packages/hooks/package.json
2023-11-08 23:50:11 +08:00

50 lines
1.1 KiB
JSON

{
"name": "@vben/hooks",
"version": "1.0.0",
"homepage": "https://github.com/vbenjs/vue-vben-admin",
"bugs": {
"url": "https://github.com/vbenjs/vue-vben-admin/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vbenjs/vue-vben-admin.git",
"directory": "packages/hooks"
},
"license": "MIT",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"development": "./src/index.ts",
"types": "./src/index.ts",
"default": "./dist/index.mjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"files": [
"dist"
],
"scripts": {
"build": "pnpm unbuild",
"clean": "pnpm rimraf .turbo node_modules dist",
"lint": "pnpm eslint .",
"stub": "pnpm unbuild --stub"
},
"dependencies": {
"@vben/typings": "workspace:*",
"@vueuse/core": "^10.5.0",
"@vueuse/integrations": "^10.5.0",
"vue": "^3.3.8",
"vue-hooks-plus": "^1.8.5"
},
"publishConfig": {
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
}
}
}
}