chore: update dependencies

notably, eslint v9 requires big changes to the configuration. because eslint-plugin-import doesn't support eslint v9, it's disabled by now.
This commit is contained in:
Simon Chan 2024-04-13 23:02:54 +08:00
parent 5c40159bf5
commit 70a82e2af3
No known key found for this signature in database
GPG key ID: A8B69F750B9BCEDD
63 changed files with 763 additions and 735 deletions

View file

@ -1,11 +0,0 @@
module.exports = {
"extends": [
"@yume-chan"
],
parserOptions: {
tsconfigRootDir: __dirname,
project: [
"./tsconfig.build.json"
],
},
}

View file

@ -29,7 +29,7 @@
"scripts": {
"build": "tsc -b tsconfig.build.json",
"build:watch": "tsc -b tsconfig.build.json",
"lint": "eslint src/**/*.ts --fix"
"lint": "run-eslint && prettier src/**/*.ts --write --tab-width 4"
},
"dependencies": {
"@yume-chan/adb": "workspace:^0.0.23",
@ -38,12 +38,11 @@
"tslib": "^2.6.2"
},
"devDependencies": {
"@types/node": "^20.12.4",
"@types/node": "^20.12.7",
"@yume-chan/eslint-config": "workspace:^1.0.0",
"@yume-chan/tsconfig": "workspace:^1.0.0",
"eslint": "^8.57.0",
"jest": "^30.0.0-alpha.3",
"prettier": "^3.2.5",
"typescript": "^5.4.4"
"typescript": "^5.4.5"
}
}