fbarrca_obsidian-inlineAI/package.json
dependabot[bot] b6b1d850d0
Bump esbuild from 0.24.2 to 0.25.0
Bumps [esbuild](https://github.com/evanw/esbuild) from 0.24.2 to 0.25.0.
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG-2024.md)
- [Commits](https://github.com/evanw/esbuild/compare/v0.24.2...v0.25.0)

---
updated-dependencies:
- dependency-name: esbuild
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-02-24 16:40:47 +00:00

35 lines
1 KiB
JSON

{
"name": "obsidian-inlineai",
"version": "1.1.0",
"description": "Cursor or Copilot like Inline AI interface for Obsidian",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json"
},
"keywords": [],
"author": "FBarrca",
"license": "MIT",
"devDependencies": {
"@types/codemirror": "^5.60.15",
"@types/node": "^22.8.1",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"builtin-modules": "^4.0.0",
"esbuild": "^0.25.0",
"obsidian": "latest",
"typescript": "^5.6.3"
},
"dependencies": {
"@codemirror/autocomplete": "^6.18.4",
"@codemirror/commands": "^6.8.0",
"@codemirror/state": "^6.5.1",
"@codemirror/view": "^6.36.2",
"@langchain/core": "^0.3.16",
"@langchain/ollama": "^0.1.1",
"@langchain/openai": "^0.3.11",
"@types/diff-match-patch": "^1.0.36",
"diff-match-patch": "^1.0.5"
}
}