-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.89 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
76
{
"name": "react-eas",
"version": "0.1.5",
"description": "Hooks for streamlined dApp development with Ethereum Attestation Service and React.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"license": "MIT",
"files": [
"/dist"
],
"repository": {
"type": "git",
"url": "https://github.com/izziaraffaele/react-eas.git"
},
"author": "Izzia Raffaele <[email protected]>",
"keywords": [
"eas",
"react",
"ethereum",
"dapp",
"wagmi",
"ethers",
"hooks"
],
"scripts": {
"dev": "tsup --watch",
"build": "rm -rf dist && tsup",
"test": "jest",
"prepare": "yarn build",
"lint": "yarn eslint src/*",
"release": "release-it",
"pre-commit": "yarn prettier"
},
"peerDependencies": {
"react": ">=17",
"react-dom": ">=17"
},
"dependencies": {
"@ethereum-attestation-service/eas-sdk": "^1.1.0-beta.1"
},
"devDependencies": {
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.9",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"eslint": "^8.47.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.30.1",
"ethers": "^6.7.0",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"lint-staged": "^13.2.3",
"prettier": "^3.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.11",
"release-it": "^16.1.4",
"ts-jest": "^29.1.1",
"tsup": "^7.2.0",
"typescript": "^5.1.6"
},
"engines": {
"node": ">=14",
"yarn": ">=1"
},
"bugs": {
"url": "https://github.com/izziaraffaele/react-eas/issues"
},
"homepage": "https://github.com/izziaraffaele/react-eas#readme",
"sideEffects": false,
"private": false
}