mirror of
https://github.com/lossless-group/perplexed-plugin.git
synced 2026-07-22 06:49:50 +00:00
Patch release bundling the marketplace-compliance lint pass for the Obsidian community plugin re-submission. No user-visible behavior changes from 0.1.0; this is the bot-clean version. versions.json picks up "0.1.1": "1.8.10" matching the manifest's minAppVersion. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
42 lines
1.2 KiB
JSON
42 lines
1.2 KiB
JSON
{
|
|
"name": "perplexed",
|
|
"version": "0.1.1",
|
|
"description": "A plugin for Obsidian that allows you to generate source-cited content using AI using Perplexity and Perplexica.",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "eslint . --report-unused-disable-directives && tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
|
|
"lint": "eslint . --report-unused-disable-directives",
|
|
"version": "node version-bump.mjs && git add manifest.json versions.json"
|
|
},
|
|
"keywords": [
|
|
"Obsidian",
|
|
"Plugin",
|
|
"LLM Research",
|
|
"AI-Powered Content Generation",
|
|
"Content Generation",
|
|
"Perplexity",
|
|
"Perplexica",
|
|
"Footnotes",
|
|
"Citations"
|
|
],
|
|
"author": "The Lossless Group",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@eslint/js": "^10.0.1",
|
|
"@types/node": "^25.6.0",
|
|
"@typescript-eslint/eslint-plugin": "8.59.1",
|
|
"@typescript-eslint/parser": "8.59.1",
|
|
"esbuild": "0.28.0",
|
|
"eslint": "^10.3.0",
|
|
"eslint-plugin-obsidianmd": "^0.2.9",
|
|
"globals": "^17.6.0",
|
|
"obsidian": "latest",
|
|
"tslib": "2.8.1",
|
|
"typescript": "6.0.3",
|
|
"typescript-eslint": "^8.59.1"
|
|
},
|
|
"dependencies": {
|
|
"@anthropic-ai/sdk": "^0.92.0"
|
|
}
|
|
}
|