-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.8 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@1inch/cross-chain-sdk",
"version": "0.1.11",
"description": "Sdk for creating atomic swaps through 1inch",
"author": "@1inch",
"module": "./dist/esm/index.js",
"main": "./dist/cjs/index.js",
"types": "./dist/types/src/index.d.ts",
"exports": {
".": {
"types": "./dist/types/src/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"node": "./dist/cjs/index.js",
"default": "./dist/cjs/index.js"
}
},
"files": [
"dist",
"LICENSE",
"README.md",
"package.json"
],
"repository": {
"type": "git",
"url": "ssh://[email protected]:1inch/cross-chain-sdk.git"
},
"scripts": {
"build": "npm run build:esm && npm run build:cjs && npm run build:types",
"build:esm": "tsc --project tsconfig.esm.json",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build:types": "tsc --project tsconfig.types.json",
"format": "prettier --write \"src/**/*.ts\"",
"lint:ci": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"lint:types": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"changelog:generate": "changelog generate -a",
"qa:fix": "pnpm build && pnpm format && pnpm lint && pnpm lint:types && pnpm test"
},
"dependencies": {
"@1inch/byte-utils": "2.6.0",
"@1inch/fusion-sdk": "2.1.5-rc.0",
"@openzeppelin/merkle-tree": "1.0.7",
"axios": "1.7.4",
"ecies-25519": "1.3.1",
"ethers": "6.13.1",
"tslib": "2.6.3",
"ws": "^8.18.0"
},
"devDependencies": {
"@1inch/eslint-config": "3.0.6",
"@1inch/tsconfig": "1.0.7",
"@eslint/compat": "1.1.0",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.5.0",
"@jest/types": "29.6.3",
"@swc/core": "1.5.25",
"@swc/jest": "0.2.36",
"@types/jest": "29.5.12",
"@types/node": "^18.16.0",
"@types/ws": "^8.5.12",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"eslint": "9.6",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^17.9.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.2.0",
"eslint-plugin-unused-imports": "^4.0.0",
"generate-changelog": "^1.8.0",
"jest": "29.7.0",
"prettier": "^3.3.2",
"ts-mockito": "2.6.1",
"type-fest": "4.23.0",
"typescript": "5.5.2"
},
"peerDependencies": {
"assert": "^2.0.0"
},
"peerDependenciesMeta": {
"assert": {
"optional": true
}
},
"engines": {
"node": ">=18.16.0"
},
"volta": {
"node": "18.16.0"
},
"pnpm": {
"overrides": {
"cross-spawn@>=7.0.0 <7.0.5": ">=7.0.5"
}
}
}