-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.52 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
{
"name": "@thesellouts/sellout-hooks",
"private": false,
"version": "0.1.30",
"description": "react hooks for interacting with sellout protocol",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"lint:fix": "eslint 'src/**/*.{ts,tsx}' --fix",
"format": "prettier --write 'src/**/*.{ts,tsx,js,json,md}'",
"test": "echo \"Error: no test specified\" && exit 1",
"format:check": "prettier --check 'src/**/*.{ts,tsx,js,json,md}'"
},
"peerDependencies": {
"@tanstack/react-query": ">=5.0.0",
"react": ">=18",
"react-dom": ">=18",
"typescript": ">=5.0.4",
"@wagmi/core": "^2.11.2",
"wagmi": "^2.10.5",
"viem": "2.x",
"zod": "^3.23.0"
},
"dependencies": {
"@thesellouts/sellout-protocol": "^0.1.4",
"permissionless": "^0.0.18"
},
"devDependencies": {
"@tanstack/eslint-plugin-query": "^5.27.7",
"@types/react": "^18.3.3",
"eslint": "^8.57.0",
"eslint-config-next": "14.1.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^8.0.0",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.0"
},
"keywords": [
"sellout",
"protocol",
"ethereum"
],
"author": "@taayyohh",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/thesellouts/sellout-hooks.git"
}
}