forked from 1inch/fusion-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.28 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
72
73
74
75
76
77
78
79
{
"name": "@1inch/fusion-sdk",
"version": "2.1.4",
"description": "1inch Fusion SDK",
"author": "@1inch",
"private": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md",
"package.json"
],
"repository": {
"type": "git",
"url": "ssh://git@github.com:1inch/fusion-sdk.git"
},
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint:ci": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --ignore-path .eslintignore --fix",
"lint:types": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"changelog:generate": "changelog generate -a"
},
"dependencies": {
"@1inch/byte-utils": "2.3.0",
"@1inch/limit-order-sdk": "^4.9.2",
"ethers": "^6.13.1",
"tslib": "^2.6.3",
"ws": "^8.17.1"
},
"devDependencies": {
"@1inch/eslint-config": "1.5.1",
"@1inch/tsconfig": "1.0.7",
"@swc/core": "1.5.25",
"@swc/jest": "0.2.36",
"@types/jest": "29.5.12",
"@types/prompts": "^2.4.9",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "~5.59.11",
"@typescript-eslint/parser": "~5.51.0",
"axios": "^1.7.2",
"eslint": "8.41.0",
"eslint-config-prettier": "~8.3.0",
"eslint-config-standard": "^17.1.0",
"eslint-import-resolver-typescript": "3.5.5",
"eslint-plugin-import": "~2.26.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.2.0",
"eslint-plugin-unused-imports": "^2.0.0",
"generate-changelog": "^1.8.0",
"jest": "^29.7.0",
"prettier": "^2.8.8",
"ts-loader": "^9.5.1",
"ts-mockito": "^2.6.1",
"ts-node": "^10.9.2",
"typescript": "4.9.4"
},
"peerDependencies": {
"assert": "^2.0.0",
"axios": ">=1 <2"
},
"peerDependenciesMeta": {
"axios": {
"optional": true
},
"assert": {
"optional": true
}
},
"volta": {
"node": "18.16.0"
}
}