-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.3 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 3.3 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
97
98
99
100
101
102
103
104
105
{
"name": "aventura",
"version": "0.7.8",
"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",
"test": "vitest run",
"test:watch": "vitest",
"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": "^4.0.27",
"@ai-sdk/deepseek": "^3.0.19",
"@ai-sdk/google": "^4.0.31",
"@ai-sdk/groq": "^4.0.19",
"@ai-sdk/mistral": "^4.0.20",
"@ai-sdk/openai": "^4.0.27",
"@ai-sdk/openai-compatible": "^3.0.20",
"@ai-sdk/xai": "^4.0.25",
"@codemirror/autocomplete": "^6.20.3",
"@codemirror/lang-liquid": "^6.3.2",
"@codemirror/language": "^6.12.4",
"@codemirror/state": "^6.7.1",
"@codemirror/view": "^6.43.7",
"@lezer/highlight": "^1.2.3",
"@lucide/svelte": "^1.31.0",
"@openrouter/ai-sdk-provider": "^3.0.0",
"@saintno/comfyui-sdk": "0.3.1",
"@tauri-apps/api": "^2.11.1",
"@tauri-apps/plugin-dialog": "^2.7.2",
"@tauri-apps/plugin-fs": "^2.5.1",
"@tauri-apps/plugin-http": "^2.5.9",
"@tauri-apps/plugin-notification": "^2.3.3",
"@tauri-apps/plugin-opener": "^2.5.4",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-sql": "^2.4.0",
"@tauri-apps/plugin-updater": "^2.10.1",
"@tutorlatin/svelte-tiny-virtual-list": "^3.0.20",
"ai": "^7.0.47",
"ai-sdk-pollinations": "^0.0.2",
"clsx": "^2.1.1",
"codemirror": "^6.0.2",
"gpt-tokenizer": "^3.4.0",
"harper.js": "^2.7.0",
"html5-qrcode": "^2.3.8",
"jsonrepair": "^3.15.0",
"liquidjs": "^10.27.2",
"marked": "^18.0.7",
"svelte-codemirror-editor": "^2.1.0",
"tailwind-merge": "^3.6.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@ai-sdk/provider": "^4.0.4",
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.70.2",
"@sveltejs/vite-plugin-svelte": "^7.2.0",
"@tailwindcss/vite": "^4.3.3",
"@tauri-apps/cli": "^2.11.4",
"@types/json-schema": "^7.0.15",
"@types/node": "^26.1.2",
"bits-ui": "^2.18.1",
"eslint": "^10.8.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.5",
"eslint-plugin-boundaries": "^7.1.0",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-svelte": "^3.22.0",
"eslint-plugin-unused-imports": "^4.4.1",
"globals": "^17.8.0",
"lefthook": "^2.1.10",
"picomatch": "^4.0.5",
"prettier": "^3.9.6",
"prettier-plugin-svelte": "^4.1.1",
"prettier-plugin-tailwindcss": "^0.8.1",
"svelte": "^5.56.8",
"svelte-check": "^4.7.4",
"tailwind-variants": "^3.3.0",
"tailwindcss": "^4.3.3",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.65.0",
"vaul-svelte": "^1.0.0-next.7",
"vite": "^8.2.0",
"vitest": "^4.1.10",
"yaml": "^2.9.0"
},
"aube": {
"allowBuilds": {
"esbuild": true,
"lefthook": true,
"unrs-resolver": true
}
}
}