routie dev init since i didn't adhere to any proper guidance up until now
This commit is contained in:
+72
@@ -0,0 +1,72 @@
|
||||
{
|
||||
"name": "eslint-plugin-antfu",
|
||||
"type": "module",
|
||||
"version": "3.2.2",
|
||||
"description": "Anthony's opinionated ESLint rules",
|
||||
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
|
||||
"license": "MIT",
|
||||
"funding": "https://github.com/sponsors/antfu",
|
||||
"homepage": "https://github.com/antfu/eslint-plugin-antfu#readme",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/antfu/eslint-plugin-antfu.git"
|
||||
},
|
||||
"bugs": "https://github.com/antfu/eslint-plugin-antfu/issues",
|
||||
"keywords": [
|
||||
"eslint-plugin"
|
||||
],
|
||||
"sideEffects": false,
|
||||
"exports": {
|
||||
".": "./dist/index.mjs"
|
||||
},
|
||||
"main": "./dist/index.mjs",
|
||||
"module": "./dist/index.mjs",
|
||||
"types": "./dist/index.d.mts",
|
||||
"files": [
|
||||
"dist"
|
||||
],
|
||||
"peerDependencies": {
|
||||
"eslint": "*"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@antfu/eslint-config": "^7.4.2",
|
||||
"@antfu/ni": "^28.2.0",
|
||||
"@antfu/utils": "^9.3.0",
|
||||
"@types/eslint": "^9.6.1",
|
||||
"@types/node": "^25.2.3",
|
||||
"@typescript-eslint/typescript-estree": "^8.55.0",
|
||||
"@typescript-eslint/utils": "^8.55.0",
|
||||
"bumpp": "^10.4.1",
|
||||
"eslint": "^10.0.0",
|
||||
"eslint-vitest-rule-tester": "^3.1.0",
|
||||
"jsonc-eslint-parser": "^2.4.2",
|
||||
"lint-staged": "^16.2.7",
|
||||
"simple-git-hooks": "^2.13.1",
|
||||
"skills-npm": "^1.0.0",
|
||||
"tsup": "^8.5.1",
|
||||
"tsx": "^4.21.0",
|
||||
"typescript": "^5.9.3",
|
||||
"unbuild": "^3.6.1",
|
||||
"vite": "^7.3.1",
|
||||
"vitest": "^4.0.18"
|
||||
},
|
||||
"resolutions": {
|
||||
"eslint": "^10.0.0",
|
||||
"eslint-plugin-antfu": "workspace:*"
|
||||
},
|
||||
"simple-git-hooks": {
|
||||
"pre-commit": "npx lint-staged"
|
||||
},
|
||||
"lint-staged": {
|
||||
"*": "eslint --fix"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "unbuild",
|
||||
"dev": "unbuild --stub",
|
||||
"lint": "pnpm run dev && eslint .",
|
||||
"release": "bumpp",
|
||||
"start": "tsx src/index.ts",
|
||||
"test": "vitest",
|
||||
"typecheck": "tsc --noEmit"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user