-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.63 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.63 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
{
"name": "@safeblock/exchange-sdk",
"version": "0.0.0",
"description": "Exchange SDK",
"main": "dist/index.cjs",
"module": "dist/index.js",
"typings": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/exchange-sdk.mjs",
"require": "./dist/exchange-sdk.js"
},
"./extensions": {
"types": "./dist/extensions/index.d.ts",
"import": "./dist/extensions.mjs",
"require": "./dist/extensions.js"
},
"./utils": {
"types": "./dist/utils/index.d.ts",
"import": "./dist/utils.mjs",
"require": "./dist/utils.js"
}
},
"scripts": {
"test": "vitest run --reporter=verbose",
"typechain": "npx typechain --target ethers-v6 --out-dir src/abis/types 'src/abis/*.json'",
"build": "vite build"
},
"keywords": [
"web3",
"crypto",
"ton",
"ethereum",
"tron"
],
"author": "SafeBlock",
"license": "CC BY-NC-SA 4.0",
"devDependencies": {
"@typechain/ethers-v6": "^0.5.1",
"terser": "^5.36.0",
"typechain": "^8.3.2",
"typescript": "^5.6.3",
"vite": "^6.0.1",
"vite-plugin-dts": "^4.3.0",
"vite-tsconfig-paths": "^5.1.3",
"vitest": "^3.0.9"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/safeblock-dev/exchange-sdk.git"
},
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/safeblock-dev/exchange-sdk/issues"
},
"homepage": "https://github.com/safeblock-dev/exchange-sdk#readme",
"peerDependencies": {
"@safeblock/blockchain-utils": "^1.0.2",
"ethers": "^6.15.0"
}
}