-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.52 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
{
"name": "celo-fx-agent",
"version": "1.0.0",
"description": "SettleySend — Telegram remittance bot for stablecoin-funded claim-code payouts",
"main": "src/index.ts",
"type": "commonjs",
"scripts": {
"start": "NODE_OPTIONS=\"--dns-result-order=ipv4first\" tsx src/index.ts",
"dev": "NODE_OPTIONS=\"--dns-result-order=ipv4first\" tsx watch src/index.ts",
"test": "node --experimental-test-module-mocks --import tsx --test blog-build-review.test.cjs test/*.test.ts test/*.test.cjs",
"build:blog": "node build-blog.js",
"typecheck": "tsc --noEmit",
"serve": "npx --yes serve public -l 8080",
"deploy:deposit-factory": "tsx scripts/deploy-deposit-factory.ts",
"deploy:payment-router": "tsx scripts/deploy-payment-router.ts",
"cf:deploy": "npx --yes wrangler@latest pages deploy public --project-name settleysend",
"cf:deploy:prod": "npx --yes wrangler@latest pages deploy public --project-name settleysend --branch main"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@supabase/supabase-js": "^2.108.2",
"@types/ws": "^8.18.1",
"dotenv": "^17.4.2",
"markdown-it": "^14.2.0",
"sanitize-html": "^2.17.5",
"telegraf": "^4.16.3",
"tesseract.js": "^6.0.1",
"tsx": "^4.22.4",
"viem": "^2.52.2",
"ws": "^8.21.0"
},
"devDependencies": {
"@types/markdown-it": "^14.1.2",
"@types/node": "^25.9.2",
"@types/sanitize-html": "^2.16.1",
"solc": "^0.8.35",
"typescript": "^6.0.3"
},
"overrides": {
"ws": "$ws"
}
}