-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.26 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.26 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
{
"name": "payto",
"version": "2.1.7",
"description": "Decentralized transfer of assets.",
"author": "CORE Labs",
"license": "CORE",
"bugs": {
"url": "https://github.com/core-laboratories/Payto/issues"
},
"homepage": "https://github.com/core-laboratories/Payto#readme",
"type": "module",
"scripts": {
"clear-cache": "rm -rf node_modules/.vite/",
"dev": "npm run clear-cache && vite",
"build": "vite build",
"preview": "vite preview",
"test": "playwright test",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test:unit": "vitest",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"typesafe-i18n": "typesafe-i18n",
"i18n:extract": "typesafe-i18n --no-watch",
"i18n:watch": "typesafe-i18n"
},
"devDependencies": {
"@cloudflare/workers-types": "^5.20260816.1",
"@playwright/test": "^1.62.1",
"@sveltejs/adapter-cloudflare": "^7.2.9",
"@sveltejs/vite-plugin-svelte": "^7.3.0",
"@tailwindcss/vite": "^4.3.3",
"@types/cookie": "^1.0.0",
"@types/open-location-code": "^1.0.1",
"eslint": "^10.8.1",
"postcss-load-config": "^6.0.1",
"prettier": "^3.9.6",
"prettier-plugin-svelte": "^4.1.1",
"tslib": "^2.8.1",
"typescript": "^7.0.2",
"vite": "^8.2.1",
"vitest": "^4.1.10",
"wrangler": "^4.123.0"
},
"dependencies": {
"@blockchainhub/blo": "^1.2.7",
"@blockchainhub/ican": "^0.4.3",
"@neoconfetti/svelte": "^2.2.2",
"@supabase/supabase-js": "^2.112.3",
"@sveltejs/kit": "^2.70.2",
"@tailwindcss/forms": "^0.5.11",
"@types/node-forge": "^1.3.14",
"@types/qrcode": "^1.5.6",
"blockchain-wallet-validator": "^1.2.1",
"device-sherlock": "^0.2.1",
"exchange-rounding": "^1.1.8",
"jose": "^6.2.9",
"jszip": "^3.10.1",
"lucide-svelte": "^1.0.1",
"node-forge": "^1.4.0",
"open-location-code": "github:google/open-location-code#main",
"payto-rl": "^1.1.5",
"qrcode": "^1.5.4",
"svelte": "^5.56.9",
"svelte-check": "^4.7.6",
"svelte-preprocess": "^6.0.5",
"svelte-transition": "^0.0.17",
"tailwindcss": "^4.3.3",
"tailwindcss-logical": "^4.2.0",
"typesafe-i18n": "^5.27.1",
"zod": "^4.4.3"
},
"engines": {
"node": ">=22"
}
}