-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.23 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "perplexed",
"version": "0.3.0",
"description": "Generate source-cited research content through prompts and templates. From Perplexity, Anthropic Claude, Google Gemini, Perplexica (now Vane), or local LM Studio — directly into your notes.",
"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"
}
}