-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.41 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.41 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
{
"name": "sillytavern-deeplore-enhanced",
"version": "2.0.1",
"description": "Use your Obsidian vault as an AI-powered lorebook — keywords + AI selection, so your lore fires when it matters",
"author": "pixelnull",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/pixelnull/sillytavern-DeepLore-Enhanced"
},
"scripts": {
"test": "node test/unit.mjs",
"test:integration": "node test/integration.mjs",
"test:fields": "node test/fields.test.mjs",
"test:stages": "node test/stages.test.mjs",
"test:contracts": "node test/contracts.test.mjs",
"test:diagnostics": "node test/diagnostics.test.mjs",
"test:vault": "node test/vault.test.mjs",
"test:regression": "node test/regression.test.mjs",
"test:all": "node test/unit.mjs && node test/integration.mjs && node test/fields.test.mjs && node test/stages.test.mjs && node test/contracts.test.mjs && node test/diagnostics.test.mjs && node test/vault.test.mjs && node test/regression.test.mjs && node test/verify-imports.mjs",
"test:imports": "node test/verify-imports.mjs",
"lint": "eslint ."
},
"devDependencies": {
"eslint": "^9.39.4"
},
"keywords": [
"sillytavern",
"extension",
"obsidian",
"lorebook",
"world-info",
"ai-search"
]
}