-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.72 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
102
103
104
105
{
"name": "@baking-bad/tezos-etherlink-bridge-sdk",
"version": "0.4.0",
"description": "SDK designed for building token bridge applications between Tezos (L1) and Etherlink (L2)",
"license": "MIT",
"author": "Baking Bad (https://bakingbad.dev)",
"maintainers": [
"Andrew Skubarenko <andrew.skubarenko@gmail.com> (https://skubarenko.com)",
"Maxim Kucherov <maximkucherov@gmail.com>"
],
"homepage": "https://github.com/baking-bad/tezos-etherlink-bridge-ts-sdk",
"engines": {
"node": ">=20"
},
"main": "dist/node/index.js",
"module": "dist/node/index.mjs",
"browser": "dist/browser/index.js",
"types": "dist/types/index.d.ts",
"exports": {
"node": {
"import": "./dist/node/index.mjs",
"require": "./dist/node/index.cjs",
"default": "./dist/node/index.mjs"
},
"browser": {
"import": "./dist/browser/index.mjs",
"default": "./dist/browser/index.js"
},
"types": "./dist/types/index.d.ts",
"default": "./dist/node/index.js"
},
"dependencies": {
"@taquito/utils": "^19.1.0",
"web3-utils": "^4.2.2",
"web3-validator": "^2.0.5"
},
"peerDependencies": {
"@taquito/taquito": ">=19.0.0",
"web3": "^4.4.0",
"ws": "^8.16.0"
},
"peerDependenciesMeta": {
"@taquito/taquito": {
"optional": true
},
"web3": {
"optional": true
},
"ethers": {
"optional": true
},
"ws": {
"optional": true
}
},
"devDependencies": {
"@taquito/signer": "^19.1.0",
"@taquito/taquito": "^19.1.0",
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"dotenv": "^16.4.1",
"esbuild": "^0.20.0",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"ethers": "^6.13.4",
"ethers-v5": "npm:ethers@^5.7.2",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3",
"web3": "^4.4.0",
"ws": "^8.16.0"
},
"scripts": {
"build": "node ./scripts/build.mjs",
"build:types": "tsc -p tsconfig.build.json",
"test": "jest --testPathIgnorePatterns=integration",
"test:integration": "jest ./integration --runInBand --config=./integration/jest.config.js",
"jest": "jest",
"watch": "npm run build -- -w",
"check:types": "tsc -p tsconfig.json",
"lint": "eslint . --ext .ts"
},
"keywords": [
"tezos",
"etherlink",
"evm",
"token-bridge",
"l2",
"layer2"
],
"repository": {
"type": "git",
"url": "git+https://github.com/baking-bad/tezos-etherlink-bridge-ts-sdk.git"
},
"bugs": {
"url": "https://github.com/baking-bad/tezos-etherlink-bridge-ts-sdk/issues"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
}
}