-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.86 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.86 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
{
"name": "tinykit",
"version": "0.1.0",
"description": "Open-source AI development platform - build production apps in an afternoon",
"private": true,
"type": "module",
"scripts": {
"dev": "concurrently --kill-others \"npm run pocketbase:serve\" \"vite dev\"",
"dev:vite": "vite dev",
"build": "vite build",
"preview": "vite preview",
"start": "node build/index.js",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"pocketbase:download": "node scripts/download-pocketbase.js",
"pocketbase:serve": "lsof -ti :8091 | xargs kill 2>/dev/null || true; ./pocketbase/pocketbase serve --http=127.0.0.1:8091",
"postinstall": "svelte-kit sync && node scripts/download-pocketbase.js"
},
"devDependencies": {
"@sveltejs/adapter-node": "^5.2.9",
"@sveltejs/kit": "^2.14.0",
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"@tailwindcss/typography": "^0.5.19",
"@types/culori": "^4.0.1",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.19.1",
"@types/node-cron": "^3.0.11",
"autoprefixer": "^10.4.20",
"concurrently": "^9.2.1",
"postcss": "^8.5.6",
"svelte": "^5.2.7",
"svelte-check": "^4.0.8",
"tailwindcss": "^3.4.17",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"vite": "^6.0.3"
},
"dependencies": {
"@ai-sdk/anthropic": "^2.0.54",
"@ai-sdk/google": "^2.0.49",
"@ai-sdk/openai": "^2.0.80",
"@anthropic-ai/sdk": "^0.70.0",
"@codemirror/autocomplete": "^6.20.0",
"@codemirror/commands": "^6.10.0",
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-javascript": "^6.2.4",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/language": "^6.11.3",
"@codemirror/language-data": "^6.5.2",
"@codemirror/state": "^6.5.2",
"@codemirror/view": "^6.38.8",
"@emmetio/codemirror6-plugin": "^0.4.0",
"@google/genai": "^1.31.0",
"@iconify/svelte": "^5.1.0",
"@lezer/highlight": "^1.2.3",
"@rollup/browser": "^4.53.3",
"acorn": "^8.15.0",
"ai": "^5.0.96",
"bits-ui": "^2.14.4",
"clsx": "^2.1.1",
"codemirror": "^6.0.2",
"codemirror-lang-svelte": "^1.0.0",
"culori": "^4.0.2",
"estree-walker": "^3.0.3",
"eventsource": "^4.1.0",
"lodash-es": "^4.17.21",
"lucide-svelte": "^0.554.0",
"marked": "^17.0.1",
"node-cron": "^4.2.1",
"openai": "^6.9.1",
"paneforge": "^1.0.2",
"pocketbase": "^0.26.3",
"postcss-nested": "^7.0.2",
"prettier": "^3.6.2",
"prettier-plugin-svelte": "^3.4.0",
"promise-worker": "^2.0.1",
"runed": "^0.36.0",
"svelte-dnd-action": "^0.9.68",
"svelte-hero-icons": "^5.2.0",
"tailwind-merge": "^3.4.0",
"tailwind-variants": "^3.1.1",
"tweakpane": "^4.0.5",
"unzipper": "^0.12.3"
}
}