nftychat-universe 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +26 -0
- package/dist/842dfae215424b79.svg +10 -0
- package/dist/index.cjs.js +836 -0
- package/dist/index.esm.js +809 -0
- package/package.json +93 -0
- package/postcss.config.js +6 -0
- package/public/favicon.ico +0 -0
- package/public/index.html +23 -0
- package/public/robots.txt +3 -0
- package/yarn-error.log +11868 -0
package/package.json
ADDED
@@ -0,0 +1,93 @@
|
|
1
|
+
{
|
2
|
+
"name": "nftychat-universe",
|
3
|
+
"repository": {
|
4
|
+
"type": "git",
|
5
|
+
"url": "https://github.com/nftychat/nftychat-universe"
|
6
|
+
},
|
7
|
+
"version": "0.1.0",
|
8
|
+
"license": "MIT",
|
9
|
+
"description": "nftychat plugins for your website",
|
10
|
+
"author": "nftychat",
|
11
|
+
"main": "dist/index.cjs.js",
|
12
|
+
"module": "dist/index.esm.js",
|
13
|
+
"source": "src/components/index.js",
|
14
|
+
"scripts": {
|
15
|
+
"build": "rollup -c",
|
16
|
+
"build-watch": "rollup -c -w",
|
17
|
+
"start": "react-scripts start"
|
18
|
+
},
|
19
|
+
"alias": {
|
20
|
+
"@rainbow-me/rainbowkit/styles.css": "@rainbow-me/rainbowkit/dist/index.css"
|
21
|
+
},
|
22
|
+
"browserslist": {
|
23
|
+
"production": [
|
24
|
+
">0.2%",
|
25
|
+
"not dead",
|
26
|
+
"not op_mini all"
|
27
|
+
],
|
28
|
+
"development": [
|
29
|
+
"last 1 chrome version",
|
30
|
+
"last 1 firefox version",
|
31
|
+
"last 1 safari version"
|
32
|
+
]
|
33
|
+
},
|
34
|
+
"eslintConfig": {
|
35
|
+
"extends": [
|
36
|
+
"react-app",
|
37
|
+
"react-app/jest"
|
38
|
+
]
|
39
|
+
},
|
40
|
+
"dependencies": {
|
41
|
+
},
|
42
|
+
"devDependencies": {
|
43
|
+
"react": "^18.2.0",
|
44
|
+
"react-dom": "^18.2.0",
|
45
|
+
"@emotion/css": "^11.10.0",
|
46
|
+
"@emotion/react": "^11.10.4",
|
47
|
+
"@emotion/styled": "^11.10.4",
|
48
|
+
"@iconify/react": "^3.2.2",
|
49
|
+
"@mui/material": "^5.10.5",
|
50
|
+
"@rainbow-me/rainbowkit": "^0.6.1",
|
51
|
+
"ethers": "^5.7.0",
|
52
|
+
"react-hot-toast": "^2.3.0",
|
53
|
+
"react-scripts": "^5.0.1",
|
54
|
+
"wagmi": "^0.6.4",
|
55
|
+
"@babel/preset-env": "^7.19.1",
|
56
|
+
"@babel/preset-react": "^7.18.6",
|
57
|
+
"@parcel/transformer-sass": "^2.7.0",
|
58
|
+
"@rollup/plugin-node-resolve": "^14.1.0",
|
59
|
+
"@rollup/plugin-url": "^7.0.0",
|
60
|
+
"@svgr/rollup": "^6.3.1",
|
61
|
+
"autoprefixer": "^10.4.8",
|
62
|
+
"clsx": "^1.2.1",
|
63
|
+
"cross-env": "^7.0.3",
|
64
|
+
"postcss": "^8.4.16",
|
65
|
+
"prettier": "^2.7.1",
|
66
|
+
"prettier-plugin-tailwindcss": "^0.1.13",
|
67
|
+
"process": "^0.11.10",
|
68
|
+
"rollup-plugin-delete": "^2.0.0",
|
69
|
+
"rollup-plugin-esformatter": "^2.0.1",
|
70
|
+
"rollup-plugin-peer-deps-external": "^2.2.4",
|
71
|
+
"rollup-plugin-svg": "^2.0.0",
|
72
|
+
"sass": "^1.54.9",
|
73
|
+
"sass-loader": "^13.0.2",
|
74
|
+
"tailwindcss": "^3.1.8",
|
75
|
+
"url-loader": "^4.1.1",
|
76
|
+
"webpack": "^5.74.0",
|
77
|
+
"webpack-cli": "^4.10.0"
|
78
|
+
},
|
79
|
+
"peerDependencies": {
|
80
|
+
"react": "^18.2.0",
|
81
|
+
"react-dom": "^18.2.0",
|
82
|
+
"@emotion/css": "^11.10.0",
|
83
|
+
"@emotion/react": "^11.10.4",
|
84
|
+
"@emotion/styled": "^11.10.4",
|
85
|
+
"@iconify/react": "^3.2.2",
|
86
|
+
"@mui/material": "^5.10.5",
|
87
|
+
"@rainbow-me/rainbowkit": "^0.6.1",
|
88
|
+
"ethers": "^5.7.0",
|
89
|
+
"react-hot-toast": "^2.3.0",
|
90
|
+
"react-scripts": "^5.0.1",
|
91
|
+
"wagmi": "^0.6.4"
|
92
|
+
}
|
93
|
+
}
|
Binary file
|
@@ -0,0 +1,23 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html lang="en">
|
3
|
+
<head>
|
4
|
+
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
|
5
|
+
<meta charset="utf-8" />
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
7
|
+
<title>nfty chat universe</title>
|
8
|
+
|
9
|
+
<!-- Google Fonts -->
|
10
|
+
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
11
|
+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
12
|
+
<link
|
13
|
+
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap"
|
14
|
+
rel="stylesheet"
|
15
|
+
/>
|
16
|
+
</head>
|
17
|
+
<body>
|
18
|
+
<noscript>You need to enable JavaScript to run this app.</noscript>
|
19
|
+
<div
|
20
|
+
id="root"
|
21
|
+
></div>
|
22
|
+
</body>
|
23
|
+
</html>
|