forked from debridge-finance/dln-taker
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.29 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 3.29 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
96
97
98
99
100
101
102
103
{
"name": "@debridge-finance/dln-taker",
"version": "3.3.1",
"description": "DLN executor is the rule-based daemon service developed to automatically execute orders placed on the deSwap Liquidity Network (DLN) across supported blockchains",
"license": "GPL-3.0-only",
"author": "deBridge",
"homepage": "https://debridge.finance",
"repository": "github:debridge-finance/dln-taker",
"main": "dist/index.js",
"bin": {
"dln-taker": "./dist/cli/bootstrap.js"
},
"files": [
"dist/"
],
"scripts": {
"build": "npm-run-all clean compile && chmod +x ./dist/cli/bootstrap.js",
"clean": "rimraf ./dist",
"compile": "tsc -P tsconfig.build.json",
"executor": "ts-node -P tsconfig.dev.json ./src/cli/bootstrap.ts",
"format": "npm-run-all lint pretty",
"lint": "npm-run-all lint:ts lint:tsc",
"lint:ts": "eslint --fix \"{src,tests}/**/*.ts\" sample.config.ts",
"lint:tsc": "tsc -P tsconfig.verify1.json && tsc -P tsconfig.verify2.json",
"pre-commit": "lint-staged",
"prepare": "husky install",
"pretty": "npm-run-all pretty:package pretty:ts",
"pretty:package": "prettier-package-json --write",
"pretty:ts": "prettier --write \"{src,tests}/**/*.ts\" sample.config.ts hardhat.config.ts",
"start:compiled": "./dist/cli/bootstrap.js",
"test": "IS_TEST=true mocha -r ts-node/register -b -t 100000 './{src,tests}/**/*.test.ts'",
"test:verbose": "IS_TEST=true TEST_LOG_LEVEL=debug mocha -r ts-node/register -b -t 100000 './{src,tests}/**/*.test.ts'"
},
"types": "./dist/index.d.ts",
"dependencies": {
"@debridge-finance/dln-client": "8.3.6",
"@debridge-finance/legacy-dln-profitability": "3.2.0",
"@debridge-finance/solana-utils": "4.2.1",
"@protobuf-ts/plugin": "2.8.1",
"@solana/web3.js": "1.66.2",
"axios": "0.21.4",
"axios-cache-adapter": "2.7.3",
"bignumber.js": "9.1.2",
"bs58": "5.0.0",
"dotenv": "16.0.3",
"node-cache": "5.1.2",
"pino": "8.7.0",
"pino-pretty": "9.1.1",
"pino-sentry": "0.13.0",
"web3": "1.8.0",
"ws": "8.10.0"
},
"peerDependencies": {
"ts-node": "*",
"typescript": "*"
},
"peerDependenciesMeta": {
"ts-node": {
"optional": true
},
"typescript": {
"optional": true
}
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.2",
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@nomicfoundation/hardhat-network-helpers": "^1.0.10",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@types/chai": "4.3.3",
"@types/chai-as-promised": "^7.1.8",
"@types/mocha": "9.1.1",
"@types/node": "18.11.9",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"assert": "2.0.0",
"chai": "^4.3.10",
"chai-as-promised": "^7.1.1",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-prettier": "^5.0.0",
"hardhat": "^2.19.2",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"mocha": "10.1.0",
"npm-run-all": "^4.1.5",
"prettier-package-json": "^2.8.0",
"rimraf": "3.0.2",
"ts-node": "10.9.1",
"typescript": "~5.1.6"
},
"keywords": [
"DLN",
"deBridge",
"ethereum",
"sdk",
"solana"
],
"engines": {
"node": ">=18"
}
}