SourceTermAnalysisSystem_vue/node_modules/eslint-processor-vue-blocks/package.json
2026-05-15 10:22:44 +08:00

89 lines
2.2 KiB
JSON

{
"name": "eslint-processor-vue-blocks",
"type": "module",
"version": "1.0.0",
"packageManager": "pnpm@9.15.3",
"description": "Create virtual files in ESLint for each Vue SFC block, so that you can lint them individually.",
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
"license": "MIT",
"funding": "https://github.com/sponsors/antfu",
"homepage": "https://github.com/antfu/eslint-processor-vue-blocks#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/antfu/eslint-processor-vue-blocks.git"
},
"bugs": "https://github.com/antfu/eslint-processor-vue-blocks/issues",
"keywords": [
"eslint",
"eslint-processor",
"vue"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"stub": "unbuild --stub",
"lint": "eslint .",
"prepublishOnly": "nr build",
"release": "bumpp && npm publish",
"start": "tsx src/index.ts",
"test": "vitest",
"typecheck": "tsc --noEmit",
"prepare": "simple-git-hooks"
},
"peerDependencies": {
"@vue/compiler-sfc": "^3.3.0",
"eslint": "^8.50.0 || ^9.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.12.2",
"@antfu/ni": "^23.2.0",
"@antfu/utils": "^8.0.0",
"@types/eslint": "^9.6.1",
"@types/node": "^22.10.5",
"@vue/compiler-sfc": "^3.5.13",
"bumpp": "^9.10.0",
"eslint": "^9.17.0",
"eslint-merge-processors": "^1.0.0",
"eslint-plugin-format": "^1.0.1",
"eslint-plugin-vue": "^9.32.0",
"eslint-processor-vue-blocks": "workspace:*",
"lint-staged": "^15.3.0",
"pnpm": "^9.15.3",
"rimraf": "^6.0.1",
"simple-git-hooks": "^2.11.1",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"unbuild": "^3.2.0",
"vite": "^6.0.7",
"vitest": "^2.1.8",
"vue": "^3.5.13"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}