chore: Update eslint and typescript-eslint versions
eslint.config.js
0 → 100644
This diff is collapsed.
{ | ||
"name": "@polycentric/leveldb-capacitor-plugin", | ||
"version": "0.0.1", | ||
"type": "module", | ||
"description": "LevelDB plugin for Capacitor supporting iOS and Android", | ||
"main": "dist/plugin.cjs.js", | ||
"module": "dist/esm/index.js", | ||
... | ... | @@ -31,7 +32,7 @@ |
"verify:web": "npm run build", | ||
"lint": "npm run eslint && npm run prettier -- --check && npm run swiftlint -- lint", | ||
"fmt": "npm run eslint -- --fix && npm run prettier -- --write && npm run swiftlint -- --fix --format", | ||
"eslint": "eslint . --ext ts", | ||
"eslint": "eslint src", | ||
"prettier": "prettier \"**/*.{css,html,ts,js,java}\"", | ||
"swiftlint": "node-swiftlint", | ||
"docgen": "docgen --api MobileLevelPlugin --output-readme README.md --output-json dist/docs.json", | ||
... | ... | @@ -45,16 +46,19 @@ |
"@capacitor/core": "^6.0.0", | ||
"@capacitor/docgen": "^0.2.2", | ||
"@capacitor/ios": "^6.0.0", | ||
"@eslint/js": "^9.4.0", | ||
"@ionic/eslint-config": "^0.3.0", | ||
"@ionic/prettier-config": "^1.0.1", | ||
"@ionic/swiftlint-config": "^1.1.2", | ||
"@types/eslint__js": "^8.42.3", | ||
"esbuild": "^0.21.4", | ||
"eslint": "^9.1.1", | ||
"eslint": "^8.57.0", | ||
"prettier": "~2.3.0", | ||
"prettier-plugin-java": "~1.0.2", | ||
"rimraf": "^3.0.2", | ||
"swiftlint": "^1.0.1", | ||
"typescript": "^5.4.5" | ||
"typescript": "^5.4.5", | ||
"typescript-eslint": "^7.12.0" | ||
}, | ||
"peerDependencies": { | ||
"@capacitor/core": "^6.0.0" | ||
... | ... |
Please register or sign in to comment