77 lines
No EOL
1.8 KiB
JSON
77 lines
No EOL
1.8 KiB
JSON
{
|
|
"name": "eslint-flat-config-utils",
|
|
"type": "module",
|
|
"version": "2.1.4",
|
|
"description": "Utils for managing and manipulating ESLint flat config arrays",
|
|
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
|
|
"license": "MIT",
|
|
"funding": "https://github.com/sponsors/antfu",
|
|
"homepage": "https://github.com/antfu/eslint-flat-config-utils#readme",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/antfu/eslint-flat-config-utils.git"
|
|
},
|
|
"bugs": "https://github.com/antfu/eslint-flat-config-utils/issues",
|
|
"keywords": [
|
|
"eslint",
|
|
"eslint-flat-config"
|
|
],
|
|
"sideEffects": false,
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.mts",
|
|
"default": "./dist/index.mjs"
|
|
}
|
|
},
|
|
"main": "./dist/index.mjs",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.mts",
|
|
"typesVersions": {
|
|
"*": {
|
|
"*": [
|
|
"./dist/*",
|
|
"./dist/index.d.ts"
|
|
]
|
|
}
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"dependencies": {
|
|
"pathe": "^2.0.3"
|
|
},
|
|
"devDependencies": {
|
|
"@antfu/eslint-config": "^5.4.1",
|
|
"@antfu/ni": "^26.0.1",
|
|
"@antfu/utils": "^9.2.1",
|
|
"@types/node": "^24.5.2",
|
|
"bumpp": "^10.2.3",
|
|
"eslint": "^9.36.0",
|
|
"eslint-plugin-unused-imports": "^4.2.0",
|
|
"jsr": "^0.13.5",
|
|
"lint-staged": "^16.1.6",
|
|
"pnpm": "^10.17.0",
|
|
"rimraf": "^6.0.1",
|
|
"simple-git-hooks": "^2.13.1",
|
|
"tsx": "^4.20.5",
|
|
"typescript": "^5.9.2",
|
|
"unbuild": "^3.6.1",
|
|
"vite": "^7.1.6",
|
|
"vitest": "^3.2.4"
|
|
},
|
|
"simple-git-hooks": {
|
|
"pre-commit": "pnpm lint-staged"
|
|
},
|
|
"lint-staged": {
|
|
"*": "eslint --fix"
|
|
},
|
|
"scripts": {
|
|
"build": "unbuild",
|
|
"dev": "unbuild --stub",
|
|
"lint": "eslint .",
|
|
"release": "bumpp && npx jsr publish --allow-slow-types",
|
|
"start": "tsx src/index.ts",
|
|
"test": "vitest",
|
|
"typecheck": "tsc --noEmit"
|
|
}
|
|
} |