-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.01 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.01 KB
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
77
78
79
{
"name": "rootstockwinks",
"version": "2.0.2",
"description": "A NextJS component that populates meta tags based on API key",
"type": "module",
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"default": "./dist/index.mjs"
},
"./package.json": "./package.json"
},
"scripts": {
"build:tsc": "tsc",
"build:rollup": "rollup -c",
"build:vite": "vite build",
"build": "npm run build:tsc && npm run build:rollup",
"dev": "tsc --watch",
"test": "jest",
"test:e2e": "npx playwright test",
"start": "node dist/server/index.js"
},
"keywords": [
"nextjs",
"meta-tags",
"seo",
"react",
"component"
],
"author": "winksdotfun",
"license": "MIT",
"peerDependencies": {
"next": "^13.0.0 || ^14.0.0",
"react": "^18.0.0"
},
"dependencies": {
"@rainbow-me/rainbowkit": "1.3.7",
"@vitejs/plugin-react": "^4.7.0",
"@walletconnect/web3-provider": "^1.8.0",
"axios": "^1.6.0",
"ethers": "^6.8.0",
"pino-pretty": "^10.0.0",
"viem": "^1.19.0",
"wagmi": "1.4.13"
},
"devDependencies": {
"@playwright/test": "^1.56.1",
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-typescript": "^11.1.5",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"@types/react": "^18.3.26",
"@types/react-dom": "^18.3.0",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.7.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rollup": "^3.29.4",
"ts-jest": "^29.4.5",
"typescript": "^5.6.3"
},
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/winksdotfun/rootstock-sdk.winks.git"
}
}