mirror of
https://github.com/lossless-group/perplexed-plugin.git
synced 2026-07-22 06:49:50 +00:00
On branch development Your branch is ahead of 'origin/development' by 1 commit. (use "git push" to publish your local commits) Changes to be committed: deleted: .eslintignore deleted: .eslintrc new file: changelog/2026-05-02_01.md new file: eslint.config.mjs modified: package.json modified: pnpm-lock.yaml modified: src/services/perplexityService.ts modified: styles.css modified: tsconfig.json
44 lines
1.1 KiB
JSON
44 lines
1.1 KiB
JSON
{
|
|
"name": "perplexed",
|
|
"version": "0.0.0.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": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
|
|
"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",
|
|
"builtin-modules": "5.1.0",
|
|
"esbuild": "0.28.0",
|
|
"eslint": "^10.3.0",
|
|
"globals": "^17.6.0",
|
|
"obsidian": "latest",
|
|
"tslib": "2.8.1",
|
|
"typescript": "6.0.3",
|
|
"typescript-eslint": "^8.59.1"
|
|
},
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
"dotenv": "^17.4.2",
|
|
"fastify": "^5.8.5",
|
|
"zod": "^4.4.2"
|
|
}
|
|
}
|