forked from karagozemin/OverSync
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 714 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 714 Bytes
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
{
"name": "@oversync/resolver",
"version": "0.1.0",
"private": true,
"description": "Reference resolver implementation for the OverSync cross-chain bridge",
"type": "module",
"main": "dist/index.js",
"bin": {
"oversync-resolver": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"lint": "eslint src --ext .ts",
"clean": "rm -rf dist"
},
"dependencies": {
"@stellar/stellar-sdk": "^13.0.0",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"pino": "^9.5.0",
"viem": "^2.21.0"
},
"devDependencies": {
"@types/node": "^20.12.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0"
}
}