-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 4.7 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 4.7 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "littlewhitebox-plugin",
"private": true,
"type": "module",
"scripts": {
"build:assistant:manifest": "node scripts/build-assistant-file-manifest.mjs",
"build:assistant:jsapi-manifest": "node scripts/build-assistant-jsapi-manifest.mjs",
"build:assistant:jsapi-runtime": "node scripts/build-assistant-jsapi-runtime.mjs",
"build:assistant:app": "vite build --config vite.assistant.config.mjs",
"build:assistant": "npm run build:assistant:manifest && npm run build:assistant:jsapi-manifest && npm run build:assistant:jsapi-runtime && npm run build:assistant:app",
"build:ebook": "vite build --config vite.ebook.config.mjs",
"build:fourth-wall": "vite build --config vite.fourth-wall.config.mjs",
"build:tavern:material-symbols": "node scripts/build-material-symbols-names.mjs",
"build:tavern:host": "node scripts/build-tavern-host.mjs",
"build:tavern:app": "vue-tsc --noEmit -p tsconfig.tavern.json && vite build --config vite.tavern.config.mjs",
"build:tavern": "npm run build:tavern:material-symbols && npm run build:tavern:host && npm run build:tavern:app",
"test:story-summary:runtime": "node scripts/story-summary-runtime-check.mjs",
"test:story-summary:replay": "node scripts/story-summary-replay-runner.mjs",
"test:story-summary:bootstrap": "node scripts/story-summary-replay-runner.mjs bootstrap",
"test:story-summary:recall": "node scripts/story-summary-replay-runner.mjs recall-only",
"test:ebook": "node --test modules/ebook/tests/book-tools.test.js",
"test:novelai-transport": "node --test server-plugin/littlewhitebox-nai/tests/*.test.js modules/draw/providers/novelai/tests/*.test.js",
"test:variables": "node --test modules/variables/tests/*.test.js",
"test:tavern": "node --import tsx --test modules/tavern/tests/*.test.ts",
"test:assistant:workspace": "node --test modules/assistant/tests/local-workspace.test.js modules/assistant/tests/apply-patch.test.js modules/assistant/tests/apply-patch-execution.test.js modules/assistant/tests/agent-protocol.test.js modules/assistant/tests/context-hint.test.js modules/assistant/tests/context-tokens.test.js modules/assistant/tests/history-compaction.test.js modules/assistant/tests/memory-files.test.js modules/assistant/tests/host-tool-requests.test.js modules/assistant/tests/local-sources-tool-runtime.test.js modules/assistant/tests/tooling.test.js modules/assistant/tests/chat-ui-window.test.js modules/assistant/tests/delegate-runner.test.js modules/assistant/tests/plan-ledger.test.js modules/assistant/tests/session-store.test.js modules/assistant/tests/anthropic-adapter.test.js modules/assistant/tests/google-adapter.test.js modules/assistant/tests/openai-compatible-adapter.test.js modules/assistant/tests/sillytavern-openai-compatible-adapter.test.js",
"lint:imports": "node scripts/check-relative-imports.mjs",
"lint:tavern": "eslint \"modules/tavern/**/*.{ts,vue}\"",
"lint": "node scripts/check-garbled.js && npm run lint:imports && eslint \"**/*.js\" && npm run lint:tavern",
"lint:fix:tavern": "eslint \"modules/tavern/**/*.{ts,vue}\" --fix",
"lint:fix": "eslint \"**/*.js\" --fix && npm run lint:fix:tavern"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.62.0",
"@typescript-eslint/parser": "^8.62.0",
"@vitejs/plugin-vue": "^6.0.7",
"acorn": "^8.16.0",
"esbuild": "^0.28.1",
"eslint": "^8.57.1",
"eslint-plugin-jsdoc": "^48.10.0",
"eslint-plugin-no-unsanitized": "^4.1.2",
"eslint-plugin-security": "^1.7.1",
"eslint-plugin-vue": "^10.9.1",
"fake-indexeddb": "^6.2.4",
"tsx": "^4.22.3",
"typescript": "^6.0.3",
"vite": "^8.0.16",
"vue": "^3.5.35",
"vue-eslint-parser": "^10.4.0",
"vue-tsc": "^3.3.2"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.91.1",
"@codemirror/autocomplete": "^6.20.1",
"@codemirror/commands": "^6.10.3",
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-html": "^6.4.11",
"@codemirror/lang-javascript": "^6.2.5",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/lang-python": "^6.2.1",
"@codemirror/lang-yaml": "^6.1.3",
"@codemirror/language": "^6.12.3",
"@codemirror/search": "^6.7.0",
"@codemirror/state": "^6.6.0",
"@codemirror/view": "^6.41.1",
"@google/genai": "^1.50.1",
"codemirror": "^6.0.2",
"gpt-tokenizer": "^3.4.0",
"openai": "^6.44.0",
"showdown": "^2.1.0"
},
"overrides": {
"ws": "8.21.0"
}
}