-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.05 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
{
"name": "@liquality/my-collectives-sdk",
"version": "2.1.16",
"description": "SDK to interact with the MyCollectives contracts",
"repository": "https://github.com/liquality/my-collectives-sdk.git",
"author": "Liquality Team",
"license": "MIT",
"private": false,
"publishConfig": {
"access": "public"
},
"main": "./dist/src/app.js",
"types": "./dist/src/app.d.ts",
"files": [
"dist/**"
],
"scripts": {
"clean": "rimraf ./dist",
"build": "yarn clean && tsc",
"watch": "tsc -w",
"lint": "TIMING=1 eslint \"**/*.ts*\"",
"publish": "yarn build --build --force && npm publish",
"link": "yarn build --build --force && npm link"
},
"dependencies": {
"@biconomy/bundler": "^3.1.1",
"@biconomy/core-types": "^3.1.1",
"@biconomy/paymaster": "^3.1.1",
"@zoralabs/protocol-sdk": "^0.4.3",
"bignumber.js": "^9.1.2",
"crypto": "^1.0.1",
"dotenv": "^16.3.1",
"ethers": "^6.9.0",
"ethers5": "npm:ethers@5",
"rimraf": "^5.0.5",
"typescript": "^5.3.3",
"viem": "^1.20.2"
}
}