-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.17 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
{
"name": "@hatsprotocol/modules-sdk",
"version": "1.4.0",
"author": "Haberdasher Labs",
"license": "MIT",
"main": "dist/modules-sdk.cjs.js",
"module": "dist/modules-sdk.esm.js",
"typings": "dist/index.d.ts",
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules yarn exec jest -- -i",
"build": "rollup -c",
"eslint": "eslint . --ext '.ts,.tsx'",
"eslint:fix": "eslint . --ext '.ts,.tsx' --fix"
},
"devDependencies": {
"@hatsprotocol/sdk-v1-core": "^0.8.0",
"@rollup/plugin-json": "^6.0.0",
"@types/jest": "^29.5.3",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"@viem/anvil": "0.0.9",
"dotenv": "^16.3.1",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.6.2",
"prettier": "^3.0.1",
"rollup": "^3.28.0",
"rollup-plugin-typescript2": "^0.35.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tslib": "^2.6.1",
"typescript": "^5.1.6",
"viem": "^2.0.0"
},
"dependencies": {
"axios": "^1.5.0",
"zod": "^3.21.4"
},
"peerDependencies": {
"viem": "^1.11.0 || ^2.0.0"
}
}