-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.1 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
{
"name": "@moveflow/sdk-evm",
"version": "1.0.0",
"description": "Moveflow Subscription SDK is a TypeScript SDK for interacting with Ethereum smart contracts related to subscription management. It provides a set of functions to create, manage, and retrieve subscription details.",
"main": "./dist/tsc/index.js",
"types": "./dist/tsc/index.d.ts",
"scripts": {
"start": "nodemon --exec ts-node src/sdk.ts",
"test": "jest",
"coverage": "jest --coverage",
"build": "tsc -p tsconfig.json",
"build-all": "yarn clean && yarn build"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@apollo/client": "^3.8.6",
"@urql/exchange-persisted-fetch": "^2.1.0",
"@wagmi/core": "^1.4.5",
"dotenv": "^16.3.1",
"ethers": "^6.8.0",
"graphql": "^16.8.1",
"urql": "^4.0.5",
"viem": "^1.18.4"
},
"devDependencies": {
"@types/jest": "^29.5.6",
"@types/mocha": "^10.0.3",
"@types/node": "^20.8.6",
"jest": "^29.5.0",
"prettier": "^3.0.0-alpha.6",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}