-
-
Notifications
You must be signed in to change notification settings - Fork 188
/
package.json
66 lines (66 loc) · 2.07 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
63
64
65
66
{
"name": "obsidian-smart-connections",
"version": "2.3.47",
"type": "module",
"description": "Link and chat with your notes using ChatGPT and embedding artificial intelligence from OpenAI.",
"scripts": {
"build": "npm run compile && node build/esbuild.js",
"compile": "node build/compile.js",
"release": "node build/release.js",
"test": "npx ava --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brianpetro/obsidian-smart-connections.git"
},
"keywords": [
"Obsidian",
"Smart",
"Connections",
"AI",
"ChatGPT",
"Embeddings",
"Notes"
],
"author": "WFH Brian (Brian Petro)",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/brianpetro/obsidian-smart-connections/issues"
},
"homepage": "https://smartconnections.app",
"devDependencies": {
"@xenova/transformers": "latest",
"archiver": "^6.0.1",
"ava": "^6.0.1",
"axios": "^1.6.7",
"dotenv": "^16.3.1",
"esbuild": "^0.23.1",
"swagger-jsdoc": "^6.2.8"
},
"dependencies": {
"ejs": "file:./ejs.min",
"obsidian": "latest",
"smart-blocks": "file:../jsbrains/smart-blocks",
"smart-chat-model": "file:../jsbrains/smart-chat-model",
"smart-chats": "file:../jsbrains/smart-chats",
"smart-chunks": "file:../jsbrains/smart-chunks",
"smart-collections": "file:../jsbrains/smart-collections",
"smart-embed-model": "file:../jsbrains/smart-embed-model",
"smart-entities": "file:../jsbrains/smart-entities",
"smart-environment": "file:../jsbrains/smart-environment",
"smart-file-system": "file:../jsbrains/smart-fs",
"smart-http-request": "file:../jsbrains/smart-http-request",
"smart-instruct-model": "file:../jsbrains/smart-instruct-model",
"smart-model": "file:../jsbrains/smart-model",
"smart-settings": "file:../jsbrains/smart-settings",
"smart-sources": "file:../jsbrains/smart-sources",
"smart-view": "file:../jsbrains/smart-view"
},
"ava": {
"files": [
"smart-chat/*.test.js",
"src/*.test.js"
],
"require": []
}
}