-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
51 lines (51 loc) · 1.35 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
{
"name": "papa-ts",
"version": "0.5.6",
"description": "Backend for your Personal Assistant, powered by Private AI (aka PAPA)",
"main": "dist/index",
"types": "dist/index",
"type": "module",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"build:watch": "tsup --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/your-papa/papa-ts.git"
},
"keywords": [
"ai",
"second-brain",
"papa",
"rag",
"obsidian"
],
"author": "Leonard Heininger, Nicolas Kohl",
"license": "ISC",
"bugs": {
"url": "https://github.com/your-papa/papa-ts/issues"
},
"homepage": "https://github.com/your-papa/papa-ts#readme",
"devDependencies": {
"@types/node": "^20.8.7",
"ts-node": "^10.9.1",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"obsidian": "^1.4.11"
},
"dependencies": {
"@msgpack/msgpack": "^3.0.0-beta2",
"@orama/orama": "^2.0.1",
"@orama/plugin-data-persistence": "^2.0.1",
"dexie": "^3.2.4",
"dotenv": "^16.3.1",
"fast-json-patch": "^3.1.1",
"graphql": "^16.8.1",
"langchain": "^0.1.2",
"llama-tokenizer-js": "^1.1.3"
}
}