-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
74 lines (74 loc) · 2.56 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
{
"name": "@relaycc/receiver",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"version": "0.1.75",
"description": "The best way to add wallet messaging to your site.",
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"dev:demo": "npm link ../receiver-example-cra/node_modules/react ../receiver-example-cra/node_modules/react-dom && npm run watch",
"dev:full": "npm link ../receiver-example-cra/node_modules/react ../receiver-example-cra/node_modules/react-dom ../xmtp-hooks && npm run watch",
"lint": "eslint src/",
"prettier": "prettier --check .",
"prettier:fix": "prettier . --write",
"typecheck": "tsc --emitDeclarationOnly false --noEmit",
"sanity": "npm run lint && npm run prettier && npm run typecheck && npm run build",
"patch": "npm version patch -m 'patch: Bump version to %s'",
"pub": "npm run lint && npm run prettier && npm run typecheck && npm run build && npm run patch && npm publish"
},
"author": "Relay",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-typescript": "^8.3.0",
"@rollup/plugin-url": "^7.0.0",
"@tanstack/react-query-devtools": "^4.12.0",
"@types/react": "^18.0.1",
"@types/react-blockies": "^1.4.1",
"@types/react-transition-group": "^4.4.5",
"@types/styled-components": "^5.1.25",
"@typescript-eslint/eslint-plugin": "5.17.0",
"@typescript-eslint/parser": "5.17.0",
"eslint": "^8.23.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-next": "12.1.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-react": "7.29.4",
"eslint-plugin-react-hooks": "4.4.0",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^2.60.0",
"rollup-plugin-postcss": "^4.0.1",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
},
"peerDependencies": {
"react": "^16 || ^17 || ^18",
"react-dom": "^16 || ^17 || ^18"
},
"dependencies": {
"@ethersproject/address": "^5.7.0",
"@ethersproject/providers": "^5.7.0",
"@headlessui/react": "^1.7.3",
"@motionone/dom": "^10.14.2",
"@relaycc/xmtp-hooks": "^0.0.10",
"@tanstack/react-query": "^4.10.3",
"encoding": "^0.1.13",
"framer-motion": "^4.1.17",
"gql": "^1.1.2",
"graphql-request": "^5.0.0",
"react-blockies": "^1.4.1",
"zustand": "^4.1.1"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"types": "dist/types/index.d.ts"
}