-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.01 KB
/
package.json
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
{
"name": "@lifi/tenderlysim",
"version": "0.0.1",
"description": "Helpers to simulate lifi quotes",
"private": true,
"author": {
"name": "LI.FI",
"url": "https://li.fi"
},
"module": "./build/src/index.js",
"types": "./build/src/index.d.ts",
"exports": {
".": "./build/src/index.js",
"./package.json": "./package.json"
},
"files": [
"build"
],
"scripts": {
"prepare": "pnpm build",
"build": "tsc --project tsconfig.build.json && pnpm resolve-tspaths",
"demo": "node -r ts-node/register src/demo.ts",
"clean": "rm -rf ./build",
"test": "jest",
"test:unit": "pnpm test .unit.spec.ts",
"test:int": "pnpm test .int.spec.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"check:types": "tsc --noEmit --esModuleInterop",
"check:circular-deps": "madge --circular $(find ./src -name '*.ts')"
},
"engines": {
"node": ">=20"
},
"devDependencies": {
"@swc/jest": "^0.2.36",
"@types/jest": "^29.5.13",
"@types/node": "^20.16.11",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-deprecation": "^2.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-unused-imports": "^3.2.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"jest-mock-extended": "^3.0.7",
"madge": "^6.1.0",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^3.2.4",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "5.3.3"
},
"packageManager": "[email protected]",
"dependencies": {
"@lifi/types": "^16.7.0-beta.0",
"@types/memoizee": "^0.4.11",
"axios": "^1.7.7",
"ethers": "^6.13.3",
"memoizee": "^0.4.17",
"pino": "^9.4.0",
"resolve-tspaths": "^0.8.22",
"tsconfig-paths": "^4.2.0"
}
}