forked from 1inch/cross-chain-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.49 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.49 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "@1inch/cross-chain-sdk",
"version": "2.0.3",
"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://git@github.com: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",
"build:contracts": "pnpm build:contracts:evm && pnpm build:contracts:svm",
"build:contracts:evm": "forge build",
"build:contracts:svm": "tsx scripts/sync-programs.ts && tsx scripts/sync-idl.ts",
"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",
"test:integration": "jest -c jest.integration.config.js",
"changelog:generate": "changelog generate -a",
"qa:fix": "pnpm build && pnpm format && pnpm lint && pnpm lint:types && pnpm test"
},
"dependencies": {
"@1inch/byte-utils": "3.1.7",
"@1inch/fusion-sdk": "2.4.3",
"@1inch/limit-order-sdk": "5.2.2",
"@coral-xyz/anchor": "0.32.1",
"@openzeppelin/merkle-tree": "1.0.8",
"@types/bn.js": "5.2.0",
"axios": "1.13.6",
"bn.js": "5.2.3",
"bs58": "6.0.0",
"ecies-25519": "1.3.1",
"ethers": "6.16.0",
"tslib": "2.8.1",
"ws": "^8.19.0"
},
"devDependencies": {
"@1inch/eslint-config": "3.0.8",
"@1inch/tsconfig": "1.0.12",
"@eslint/compat": "1.3.1",
"@eslint/eslintrc": "^3.3.4",
"@eslint/js": "^9.39.3",
"@jest/types": "30.0.1",
"@swc/core": "1.11.24",
"@swc/jest": "0.2.38",
"@types/jest": "29.5.12",
"@types/node": "^18.19.130",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"camelcase": "8.0.0",
"eslint": "9.39.3",
"eslint-config-prettier": "^9.1.2",
"eslint-config-standard": "^17.1.0",
"eslint-import-resolver-typescript": "^3.10.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-n": "^17.24.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-unused-imports": "^4.4.1",
"generate-changelog": "^1.8.0",
"jest": "30.2.0",
"litesvm": "0.2.0",
"prettier": "^3.8.1",
"testcontainers": "11.2.1",
"ts-mockito": "2.6.1",
"tsx": "^4.21.0",
"type-fest": "4.41.0",
"typescript": "^5.9.3"
},
"peerDependencies": {
"assert": "^2.0.0"
},
"peerDependenciesMeta": {
"assert": {
"optional": true
}
},
"engines": {
"node": ">=18.16.0"
},
"volta": {
"node": "22.18.0"
},
"pnpm": {
"overrides": {
"minimatch@<3.1.4": "3.1.5"
},
"onlyBuiltDependencies": [
"@swc/core",
"bigint-buffer",
"bufferutil",
"cpu-features",
"protobufjs",
"ssh2",
"unrs-resolver",
"utf-8-validate"
]
}
}