fix ts check

This commit is contained in:
duanfuxiang
2025-01-05 21:14:35 +08:00
parent 0c7ee142cb
commit 5465d5fca3
46 changed files with 11974 additions and 91 deletions

View File

@@ -8,8 +8,6 @@
"dev": "npm run bundle-pglite && node esbuild.config.mjs",
"build": "npm run bundle-pglite && tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs",
"lint:check": "(prettier --check --cache --cache-strategy content --cache-location node_modules/.cache/.prettiercache .) && (eslint .)",
"lint:fix": "(prettier --write --cache --cache-strategy content --cache-location node_modules/.cache/.prettiercache .) && (eslint --fix .)",
"type:check": "tsc --noEmit",
"test": "jest"
},
@@ -19,6 +17,7 @@
"devDependencies": {
"@types/diff": "^5.2.3",
"@types/jest": "^29.5.13",
"@types/lodash": "^4.14.195",
"@types/lodash.debounce": "^4.0.9",
"@types/lodash.isequal": "^4.5.8",
"@types/node": "^16.11.6",
@@ -32,18 +31,19 @@
"builtin-modules": "3.3.0",
"drizzle-kit": "^0.26.2",
"esbuild": "0.17.3",
"eslint": "^8.57.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-neverthrow": "^1.1.4",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^5.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"obsidian": "latest",
"prettier": "^3.3.3",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"tslib": "2.4.0",
"typescript": "^5.6.2"
"typescript": "^4.9.0"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.27.3",
@@ -72,6 +72,7 @@
"lodash.isequal": "^4.5.0",
"lru-cache": "^10.1.0",
"lucide-react": "^0.447.0",
"micromatch": "^4.0.5",
"minimatch": "^10.0.1",
"neverthrow": "^6.1.0",
"openai": "^4.73.0",
@@ -83,6 +84,6 @@
"react-syntax-highlighter": "^15.5.0",
"remark-gfm": "^4.0.0",
"uuid": "^10.0.0",
"zod": "^3.23.8"
"zod": "^3.22.4"
}
}