UNPKG

vue-hook-optimizer

Version:

a tool that helps refactor and optimize hook abstractions in Vue components

71 lines 1.73 kB
{ "name": "vue-hook-optimizer", "type": "module", "version": "0.0.80", "description": "a tool that helps refactor and optimize hook abstractions in Vue components", "author": "zcf0508 <zcf0508@live.com>", "license": "MIT", "homepage": "https://github.com/zcf0508/vue-hook-optimizer", "repository": { "type": "git", "url": "https://github.com/zcf0508/vue-hook-optimizer.git" }, "keywords": [ "vue", "hooks" ], "sideEffects": false, "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "require": "./dist/index.cjs" } }, "main": "./dist/index.cjs", "module": "./dist/index.js", "types": "./dist/index.d.ts", "typesVersions": { "*": { "*": [ "./dist/*", "./dist/index.d.ts" ] } }, "files": [ "dist" ], "peerDependencies": { "@babel/core": "^7.22.5", "@babel/parser": "^7.22.5", "@babel/traverse": "^7.22.5", "@babel/types": "^7.22.5", "@vue/compiler-sfc": "^3.4.1" }, "devDependencies": { "@babel/preset-typescript": "^7.24.1", "@types/babel__core": "^7.20.5", "@types/babel__traverse": "^7.20.5", "@types/lodash-es": "^4.17.12", "@types/node": "^20.12.7", "@types/uuid": "^9.0.8", "@vitest/coverage-istanbul": "^3.2.4", "cross-env": "^7.0.3", "fast-glob": "^3.3.2", "lodash-es": "^4.17.21", "nodemon": "^3.1.0", "ts-node": "^10.9.2", "tsdown": "^0.14.2", "typescript": "^5.4.5", "vis-network": "^9.1.9", "vitest": "^3.2.4" }, "scripts": { "dev": "nodemon", "build": "tsdown", "test": "vitest", "coverage": "vitest run --coverage", "typecheck": "tsc --noEmit" } }