generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.05 KB
/
package.json
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "smart-seeker",
"version": "0.1.26",
"description": "An Obsidian plugin that enables fast and intelligent note search using RAG (Retrieval Augmented Generation) with Pinecone vector database and OpenAI",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version:commit": "git add manifest.json versions.json package.json && git commit -m \"chore: bump version to $(node -p \"require('./package.json').version\")\"",
"version": "node version-bump.mjs && npm run version:commit",
"version:major": "node version-bump.mjs major && npm run version:commit",
"version:minor": "node version-bump.mjs minor && npm run version:commit",
"version:patch": "node version-bump.mjs patch && npm run version:commit",
"release": "git tag $(node -p \"require('./package.json').version\") && git push && git push --tags",
"lint:fix": "biome check --apply ./src",
"format:fix": "biome format --write ./src",
"prepare": "husky"
},
"keywords": [
"obsidian",
"obsidian-plugin",
"rag",
"semantic-search",
"vector-search",
"pinecone",
"openai",
"note-search",
"knowledge-management"
],
"author": "anpigon <[email protected]>",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^16.11.6",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"esbuild": "0.17.3",
"husky": "^9.1.6",
"obsidian": "^1.7.2",
"tslib": "2.4.0",
"typescript": "4.7.4"
},
"dependencies": {
"@langchain/community": "^0.3.11",
"@langchain/core": "^0.3.17",
"@langchain/openai": "^0.3.11",
"@langchain/pinecone": "^0.1.1",
"@langchain/textsplitters": "^0.1.0",
"@pinecone-database/pinecone": "^4.0.0",
"@tanstack/react-query": "^5.61.4",
"flat": "^6.0.1",
"js-tiktoken": "^1.0.15",
"langchain": "^0.3.5",
"openai": "^4.70.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"uuid": "^11.0.3"
}
}