-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.13 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
{
"name": "@hatsprotocol/hats-account-sdk",
"version": "0.0.5",
"author": "Haberdasher Labs",
"main": "dist/hats-account-sdk.cjs.js",
"module": "dist/hats-account-sdk.esm.js",
"typings": "dist/index.d.ts",
"keywords": [],
"license": "MIT",
"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.1",
"@rollup/plugin-json": "^6.1.0",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"@viem/anvil": "^0.0.7",
"dotenv": "^16.4.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"rollup": "^4.10.0",
"rollup-plugin-typescript2": "^0.36.0",
"ts-jest": "^29.1.2",
"ts-lib": "^0.0.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"viem": "^1.11.0"
},
"peerDependencies": {
"viem": "^1.11.0"
}
}