-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.46 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
{
"name": "self-sync",
"description": "A transactional local-first sync engine for SvelteKit and Effect with reactive IndexedDB state, WebSockets, and Postgres/MySQL adapters.",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"test": "node --test tests/*.test.ts",
"verify:transactions": "node scripts/verify-transaction-api.mjs",
"verify:replication": "node scripts/verify-replication-api.mjs",
"prepare": "svelte-kit sync || echo ''",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch"
},
"devDependencies": {
"@fontsource-variable/inter": "^5.2.8",
"@internationalized/date": "^3.12.2",
"@lucide/svelte": "^1.23.0",
"@sveltejs/adapter-vercel": "^6.3.4",
"@sveltejs/kit": "^2.63.0",
"@sveltejs/vite-plugin-svelte": "^7.1.2",
"@tailwindcss/vite": "^4.3.0",
"@types/pg": "^8.20.0",
"@types/ws": "^8.18.1",
"bits-ui": "^2.18.1",
"clsx": "^2.1.1",
"fake-indexeddb": "^6.2.5",
"shadcn-svelte": "^1.4.0",
"svelte": "^5.56.1",
"svelte-check": "^4.6.0",
"tailwind-merge": "^3.6.0",
"tailwind-variants": "^3.2.2",
"tailwindcss": "^4.3.0",
"tw-animate-css": "^1.4.0",
"typescript": "^6.0.3",
"vite": "^8.0.16"
},
"dependencies": {
"dexie": "^4.4.4",
"effect": "^3.21.4",
"mysql2": "^3.22.6",
"pg": "^8.22.0",
"ws": "^8.21.0"
}
}