mirror of
https://github.com/ebullient/obsidian-prompt-flow.git
synced 2026-07-22 06:41:06 +00:00
Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 8.59.3 to 8.60.0. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.60.0/packages/parser) --- updated-dependencies: - dependency-name: "@typescript-eslint/parser" dependency-version: 8.60.0 dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
59 lines
2.1 KiB
JSON
59 lines
2.1 KiB
JSON
{
|
|
"name": "obsidian-prompt-flow",
|
|
"description": "Local AI content generation for Obsidian with Ollama. Features custom prompts, content filtering, link expansion, continuous conversations, and extensible filter API.",
|
|
"main": "main.js",
|
|
"version": "0.7.2",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"fix": "npx @biomejs/biome check --write ./src",
|
|
"format": "npx @biomejs/biome format ./src",
|
|
"eslint": "npx eslint",
|
|
"lint": "npx @biomejs/biome lint ./src",
|
|
"test": "node_modules/.bin/vitest run --exclude tests/ollama-integration.test.ts",
|
|
"test:ollama": "node --env-file-if-exists=.env node_modules/.bin/vitest run tests/ollama-integration.test.ts",
|
|
"prebuild": "npm test && npx @biomejs/biome check ./src",
|
|
"build": "node esbuild.config.mjs production",
|
|
"postbuild": "cp -v manifest.json README.md build",
|
|
"preversion": "npm run build",
|
|
"version": "auto-changelog -p",
|
|
"brat-notes": "run() { auto-changelog --stdout --hide-credit --hide-empty-releases --template .github/changelog.hbs -v $1 --starting-version $1 > release-notes.md; }; run"
|
|
},
|
|
"keywords": [
|
|
"obsidian",
|
|
"obsidian-md",
|
|
"obsidian-plugin",
|
|
"obsidian-md-plugin"
|
|
],
|
|
"author": "ebullient",
|
|
"repository": "github.com:ebullient/obsidian-prompt-flow",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@biomejs/biome": "2.4.15",
|
|
"@types/codemirror": "5.60.17",
|
|
"@types/node": "^25.9.1",
|
|
"@typescript-eslint/parser": "^8.60.0",
|
|
"auto-changelog": "^2.6.0",
|
|
"esbuild": "^0.28.0",
|
|
"esbuild-sass-plugin": "^3.6.0",
|
|
"eslint": "^9.39.4",
|
|
"eslint-plugin-obsidianmd": "^0.3.0",
|
|
"globals": "^17.6.0",
|
|
"obsidian": "^1.13.1",
|
|
"tslib": "^2.8.1",
|
|
"typescript": "6.0.3",
|
|
"vitest": "^4.1.5"
|
|
},
|
|
"dependencies": {
|
|
"eventsource-parser": "^3.1.0",
|
|
"ollama": "^0.6.3"
|
|
},
|
|
"auto-changelog": {
|
|
"backfillLimit": false,
|
|
"commitLimit": false,
|
|
"ignoreCommitPattern": "(🔖|🔨|🧹|changelog|release|Update README).*",
|
|
"replaceText": {
|
|
"([;.,] [rR]esolves) #\\d+\\.?\\s*$": "$1",
|
|
"([;.,] [Ff]ixes) #\\d+\\.?\\s*$": "$1"
|
|
}
|
|
}
|
|
}
|