mirror of
https://github.com/logancyang/obsidian-copilot.git
synced 2026-07-22 07:50:24 +00:00
chore(deps): bump deps ahead of scorecard cleanup (W0/9) (#2398)
First of nine workspaces splitting #2397 into focused PRs (see designdocs/todo/SCORECARD_WARNINGS.md, landing in a later workspace). This PR is deps-only so the source-touching workspaces (types, promise safety, popout compat, styles, trash semantics, brevilabs rewrite, eslint rules) can each land independently. Dependencies: - @codemirror/state, @codemirror/view: peer deps for newer @lexical/* usage - @langchain/classic: required by langchain ^1 split layout - openai: direct consumer in upcoming provider work - uuid + @types/uuid: replaces ad-hoc id generation - zod: schema validation used in upcoming type tightening DevDependencies: - eslint-plugin-obsidianmd: installed now but not wired into .eslintrc until the final workspace (W9) once all flagged sites are cleaned up No source changes; no behavior changes. npm run lint / build / test all pass on this branch.
This commit is contained in:
parent
8f35b396bc
commit
2fb1552a49
2 changed files with 1732 additions and 227 deletions
1949
package-lock.json
generated
1949
package-lock.json
generated
File diff suppressed because it is too large
Load diff
10
package.json
10
package.json
|
|
@ -50,6 +50,7 @@
|
|||
"@types/react-dom": "^18.0.11",
|
||||
"@types/react-syntax-highlighter": "^15.5.6",
|
||||
"@types/turndown": "^5.0.6",
|
||||
"@types/uuid": "^10.0.0",
|
||||
"@typescript-eslint/eslint-plugin": "^8.19.1",
|
||||
"@typescript-eslint/parser": "^8.19.1",
|
||||
"builtin-modules": "3.3.0",
|
||||
|
|
@ -57,6 +58,7 @@
|
|||
"esbuild": "^0.25.0",
|
||||
"eslint": "^8.57.0",
|
||||
"eslint-plugin-json": "^4.0.1",
|
||||
"eslint-plugin-obsidianmd": "^0.3.0",
|
||||
"eslint-plugin-react": "^7.37.3",
|
||||
"eslint-plugin-react-hooks": "^5.1.0",
|
||||
"eslint-plugin-tailwindcss": "^3.18.0",
|
||||
|
|
@ -75,6 +77,8 @@
|
|||
"web-streams-polyfill": "^3.3.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"@codemirror/state": "^6.5.2",
|
||||
"@codemirror/view": "^6.36.4",
|
||||
"@dnd-kit/core": "^6.3.1",
|
||||
"@dnd-kit/sortable": "^10.0.0",
|
||||
"@dnd-kit/utilities": "^3.2.2",
|
||||
|
|
@ -82,6 +86,7 @@
|
|||
"@huggingface/inference": "^4.11.3",
|
||||
"@koa/cors": "^5.0.0",
|
||||
"@langchain/anthropic": "^1.0.0",
|
||||
"@langchain/classic": "^1.0.9",
|
||||
"@langchain/cohere": "^1.0.0",
|
||||
"@langchain/community": "^1.0.0",
|
||||
"@langchain/core": "^1.1.29",
|
||||
|
|
@ -136,6 +141,7 @@
|
|||
"luxon": "^3.5.0",
|
||||
"minisearch": "^7.2.0",
|
||||
"next-i18next": "^13.2.2",
|
||||
"openai": "^4.95.1",
|
||||
"p-queue": "^8.1.0",
|
||||
"prop-types": "^15.8.1",
|
||||
"react": "^18.2.0",
|
||||
|
|
@ -148,6 +154,8 @@
|
|||
"tailwind-merge": "^2.5.5",
|
||||
"tailwindcss-animate": "^1.0.7",
|
||||
"trie-search": "^2.2.0",
|
||||
"turndown": "^7.2.2"
|
||||
"turndown": "^7.2.2",
|
||||
"uuid": "^11.1.0",
|
||||
"zod": "^3.25.76"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue