-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.1 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3.1 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "aventura",
"version": "0.7.3",
"description": "AI-powered adventure and creative writing frontend",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"tauri": "tauri",
"release": "node scripts/release.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"**/*.{ts,js,svelte,json,css,html}\""
},
"license": "AGPL-3.0",
"dependencies": {
"@ai-sdk/anthropic": "^3.0.35",
"@ai-sdk/deepseek": "^2.0.17",
"@ai-sdk/google": "^3.0.20",
"@ai-sdk/groq": "^3.0.21",
"@ai-sdk/mistral": "^3.0.18",
"@ai-sdk/openai": "^3.0.25",
"@ai-sdk/openai-compatible": "^2.0.26",
"@ai-sdk/xai": "^3.0.46",
"@codemirror/commands": "^6.10.2",
"@codemirror/lang-liquid": "^6.3.1",
"@codemirror/state": "^6.5.4",
"@codemirror/view": "^6.39.14",
"@openrouter/ai-sdk-provider": "^2.1.1",
"@saintno/comfyui-sdk": "0.2.49",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-dialog": "^2",
"@tauri-apps/plugin-fs": "^2",
"@tauri-apps/plugin-http": "^2.5.4",
"@tauri-apps/plugin-notification": "^2.3.3",
"@tauri-apps/plugin-opener": "^2",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-sql": "^2",
"@tauri-apps/plugin-updater": "^2.9.0",
"@tutorlatin/svelte-tiny-virtual-list": "^3.0.18",
"ai": "^6.0.67",
"ai-sdk-pollinations": "^0.0.1",
"clsx": "^2.1.1",
"codemirror": "^6.0.2",
"gpt-tokenizer": "^3.4.0",
"harper.js": "^1.2.0",
"html5-qrcode": "^2.3.8",
"jsonrepair": "^3.13.2",
"jszip": "^3.10.1",
"liquidjs": "^10.24.0",
"lucide-svelte": "^0.468.0",
"marked": "^17.0.1",
"svelte-codemirror-editor": "^2.1.0",
"tailwind-merge": "^3.4.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@lucide/svelte": "^0.482.0",
"@sveltejs/adapter-static": "^3.0.6",
"@sveltejs/kit": "^2.9.0",
"@sveltejs/vite-plugin-svelte": "^5.0.0",
"@tailwindcss/vite": "^4.2.2",
"@tauri-apps/cli": "^2",
"@types/json-schema": "^7.0.15",
"@types/marked": "^5.0.2",
"@types/node": "^25.2.0",
"autoprefixer": "^10.4.20",
"bits-ui": "^1.8.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-boundaries": "^6.0.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-svelte": "^3.14.0",
"eslint-plugin-unused-imports": "^4.3.0",
"globals": "^17.3.0",
"lefthook": "^2.1.0",
"postcss": "^8.4.49",
"prettier": "^3.8.1",
"prettier-plugin-svelte": "^3.4.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"svelte": "^5.0.0",
"svelte-check": "^4.0.0",
"tailwind-variants": "^0.2.1",
"tailwindcss": "^4.2.2",
"tailwindcss-animate": "^1.0.7",
"tw-animate-css": "^1.4.0",
"typescript": "~5.6.2",
"typescript-eslint": "^8.54.0",
"vaul-svelte": "^1.0.0-next.7",
"vite": "^6.0.3"
}
}