vue-hook-optimizer
Version:
a tool that helps refactor and optimize hook abstractions in Vue components
83 lines • 2.29 kB
JSON
{
"name": "vue-hook-optimizer",
"version": "0.0.76",
"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.mjs",
"require": "./dist/index.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"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": {
"@antfu/eslint-config": "^4.10.0",
"@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": "^1.5.2",
"bumpp": "^9.4.1",
"cross-env": "^7.0.3",
"eslint": "^9.22.0",
"eslint-plugin-security": "^3.0.1",
"fast-glob": "^3.3.2",
"lodash-es": "^4.17.21",
"nodemon": "^3.1.0",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"vis-network": "^9.1.9",
"vitest": "^1.5.2",
"eslint-plugin-vue-hook-optimizer": "0.0.76"
},
"scripts": {
"dev": "nodemon",
"dev:ext": "npm -C packages/vscode run dev",
"build": "tsup",
"build:ext": "npm -C packages/vscode run build",
"build:eslint": "npm -C packages/eslint run build",
"build:mcp": "npm -C packages/mcp run build",
"build:all": "npm run build && npm run build:eslint && npm run build:mcp && npm run build:ext",
"play": "npm -C packages/playground run dev",
"lint": "eslint .",
"test": "vitest",
"coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"release": "bumpp -r"
}
}