-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.83 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.83 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
{
"name": "cypherflow-ai-pwa",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"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",
"format": "prettier --write .",
"lint": "prettier --check . && eslint .",
"test:unit": "vitest",
"test:unit:coverage": "vitest run --coverage",
"test": "npm run test:unit -- --run && npm run test:e2e",
"test:e2e": "playwright test"
},
"devDependencies": {
"@castlenine/svelte-qrcode": "^2.3.0",
"@eslint/compat": "^1.2.5",
"@eslint/js": "^9.19.0",
"@lucide/svelte": "^0.487.0",
"@playwright/test": "^1.50.0",
"@sveltejs/adapter-node": "^5.2.12",
"@sveltejs/kit": "^2.16.1",
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/typography": "^0.5.16",
"@testing-library/jest-dom": "^6.6.3",
"@types/debug": "^4.1.12",
"@vitest/coverage-v8": "3.0.4",
"autoprefixer": "^10.4.20",
"bits-ui": "1.0.0-next.91",
"clsx": "^2.1.1",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-svelte": "^2.46.1",
"fake-indexeddb": "^6.0.0",
"globals": "^15.14.0",
"jsdom": "^26.0.0",
"lucide-svelte": "^0.474.0",
"mode-watcher": "^0.5.1",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"svelte": "^5.25.9",
"svelte-check": "^4.1.4",
"svelte-sonner": "^0.3.28",
"tailwind-merge": "^2.6.0",
"tailwind-variants": "^0.3.1",
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0",
"vaul-svelte": "1.0.0-next.7",
"vite": "^6.0.11",
"vitest": "^3.0.4"
},
"dependencies": {
"@ai-sdk/anthropic": "^1.2.10",
"@ai-sdk/groq": "^1.2.8",
"@ai-sdk/openai": "^1.3.9",
"@ai-sdk/provider": "^1.1.3",
"@ai-sdk/svelte": "^2.1.9",
"@ai-sdk/ui-utils": "^1.2.7",
"@cashu/cashu-ts": "2.1.0",
"@gandlaf21/bc-ur": "^1.1.12",
"@noble/ciphers": "^1.2.1",
"@noble/hashes": "^1.7.1",
"@nostr-dev-kit/ndk": "2.14.9",
"@nostr-dev-kit/ndk-cache-dexie": "^2.6.11",
"@nostr-dev-kit/ndk-svelte": "^2.4.15",
"@nostr-dev-kit/ndk-svelte-components": "^2.3.11",
"@nostr-dev-kit/ndk-wallet": "0.5.13",
"@scure/base": "^1.2.4",
"ai": "^4.3.4",
"date-fns": "^4.1.0",
"debug": "^4.4.0",
"dexie": "^4.0.11",
"dompurify": "^3.2.4",
"highlight.js": "^11.11.1",
"light-bolt11-decoder": "^3.2.0",
"nanoid": "^5.1.5",
"nostr-tools": "^2.10.4",
"path-browserify": "^1.0.1",
"qr-scanner": "^1.4.2",
"rehype-highlight": "^7.0.2",
"svelte-exmarkdown": "^5.0.1",
"svelte-qrcode": "^1.0.1",
"tseep": "^1.3.1"
}
}