-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.4 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": "faraday-examples",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Examples for interacting with the Faraday API via faraday-sdk",
"scripts": {
"typecheck": "tsc --noEmit",
"lint": "eslint '**/*.{ts,tsx}'",
"lint:fix": "eslint '**/*.{ts,tsx}' --fix",
"format": "prettier --check '**/*.{ts,tsx}'",
"format:write": "prettier --write '**/*.{ts,tsx}'",
"dev:setup": "tsx src/setup.ts",
"dev:chains": "tsx src/chains.ts",
"dev:quote": "tsx src/quote.ts",
"dev:quotes": "tsx src/quotes.ts",
"dev:person": "tsx src/person.ts",
"dev:submit-evm": "tsx src/submit-evm.ts",
"dev:submit-solana": "tsx src/submit-solana",
"dev:tokens": "tsx src/tokens.ts",
"build": "tsc -p tsconfig.json",
"start:health": "node dist/health.js"
},
"dependencies": {
"@ethersproject/rlp": "^5.8.0",
"@rangesecurity/faraday-sdk": "^0.2.1",
"@solana/web3.js": "^1.98.4",
"bip39": "^3.1.0",
"dotenv": "^16.4.5",
"ed25519-hd-key": "^1.3.0",
"ethers": "^6.15.0",
"fs-extra": "^11.3.2"
},
"devDependencies": {
"@eslint/js": "^9.37.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^24.7.2",
"eslint": "^9.37.0",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.6.2",
"tsx": "^4.19.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.1"
},
"engines": {
"node": ">=18"
}
}