Update and refactor

This commit is contained in:
Alex
2024-01-13 18:20:36 -05:00
parent 690b46fd2b
commit d8f224c5cf
18 changed files with 1494 additions and 274 deletions

View File

@ -1,28 +1,28 @@
{
"name": "@aet/eslint-configs",
"scripts": {
"build": "./build.sh",
"check-import": "./src/check-imports.ts"
"build": "./scripts/build.sh",
"check-import": "./scripts/check-imports.ts"
},
"private": true,
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/plugin-transform-flow-strip-types": "^7.23.3",
"@babel/preset-env": "^7.23.7",
"@babel/preset-env": "^7.23.8",
"@types/babel-plugin-macros": "^3.1.3",
"@types/babel__core": "^7.20.5",
"@types/eslint": "^8.56.0",
"@types/eslint": "^8.56.2",
"@types/estree": "^1.0.5",
"@types/estree-jsx": "^1.0.3",
"@types/lodash": "^4.14.202",
"@types/node": "^20.10.6",
"@typescript-eslint/eslint-plugin": "6.16.0",
"@typescript-eslint/type-utils": "^6.16.0",
"@typescript-eslint/types": "^6.16.0",
"@typescript-eslint/typescript-estree": "^6.16.0",
"@typescript-eslint/utils": "^6.16.0",
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "6.18.1",
"@typescript-eslint/type-utils": "^6.18.1",
"@typescript-eslint/types": "^6.18.1",
"@typescript-eslint/typescript-estree": "^6.18.1",
"@typescript-eslint/utils": "^6.18.1",
"babel-plugin-macros": "^3.1.0",
"dts-bundle-generator": "^9.2.1",
"dts-bundle-generator": "^9.2.4",
"esbin": "0.0.4",
"esbuild": "0.19.11",
"esbuild-plugin-alias": "^0.2.1",
@ -36,7 +36,7 @@
"minimatch": "^9.0.3",
"patch-package": "^8.0.0",
"picocolors": "^1.0.0",
"prettier": "^3.1.1",
"prettier": "^3.2.1",
"prop-types": "^15.8.1",
"typescript": "^5.3.3"
},
@ -47,5 +47,17 @@
"semi": true,
"singleQuote": true,
"trailingComma": "all"
},
"pnpm": {
"overrides": {
"function-bind": "npm:@nolyfill/function-bind@latest",
"has-proto": "npm:@nolyfill/has-proto@latest",
"has-symbols": "npm:@nolyfill/has-symbols@latest",
"hasown": "npm:@nolyfill/hasown@latest",
"isarray": "npm:@nolyfill/isarray@latest",
"jsonify": "npm:@nolyfill/jsonify@latest",
"object-keys": "npm:@nolyfill/object-keys@latest",
"set-function-length": "npm:@nolyfill/set-function-length@latest"
}
}
}