-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 2.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
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
{
"name": "@safe-global/safe-react-hooks",
"version": "0.2.0",
"description": "A collection of React Hooks that facilitates the interaction of React apps with Safe Smart Accounts",
"keywords": [
"Ethereum",
"Wallet",
"Safe",
"Smart Account",
"SDK",
"React",
"Hooks"
],
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"format:check": "prettier --check \"*/**/*.{js,json,md,ts}\"",
"format": "prettier --write \"*/**/*.{js,json,md,ts}\"",
"lint:check": "eslint './{src,test}/**/*.{js,jsx,ts,tsx}'",
"unbuild": "rm -rf dist cache *.tsbuildinfo",
"build": "yarn unbuild && tsc -p tsconfig.build.json && tsc-alias"
},
"repository": {
"type": "git",
"url": "git+https://github.com/safe-global/safe-react-hooks.git"
},
"author": "Safe (https://safe.global)",
"license": "MIT",
"bugs": {
"url": "https://github.com/safe-global/safe-react-hooks/issues"
},
"files": [
"dist"
],
"sideEffects": false,
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"typings": "./dist/index.d.ts",
"peerDependencies": {
"@tanstack/react-query": ">=5.0.0",
"react": ">=18",
"typescript": ">=5.0.4"
},
"devDependencies": {
"@safe-global/types-kit": "^1.0.0",
"@tanstack/react-query": ">=5.45.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@types/jest": "^29.5.13",
"@types/react": ">=18.3.11",
"@types/react-dom": ">=18.3.1",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.3.3",
"react": ">=18.3.1",
"react-dom": ">=18.3.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"typescript": "^5.3.3"
},
"dependencies": {
"@safe-global/sdk-starter-kit": "^1.1.0",
"viem": "^2.18.6",
"wagmi": "^2.12.2"
},
"packageManager": "[email protected]"
}