-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.94 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.94 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
{
"name": "@doogly/react",
"version": "1.0.5",
"description": "A React component for Doogly with QR code support.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"build:types": "tsc --emitDeclarationOnly",
"build:all": "npm run build && npm run build:types",
"clean": "rimraf dist",
"prepare": "npm run clean && npm run build:all"
},
"peerDependencies": {
"ethers": "^6.0.0",
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"dependencies": {
"@0xsquid/squid-types": "^0.1.133",
"@cosmjs/stargate": "^0.33.0",
"@ethersproject/abstract-signer": "^5.7.0",
"@ethersproject/wallet": "^5.7.0",
"@privy-io/react-auth": "^2.8.0",
"@project-serum/anchor": "^0.26.0",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-slot": "^1.1.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-terser": "^0.4.4",
"@solana/web3.js": "^1.98.0",
"@tanstack/react-query": "^5.55.3",
"axios": "^1.7.9",
"bitcoinjs-lib": "^6.1.7",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cosmjs-types": "^0.9.0",
"lodash": "^4.17.21",
"lucide-react": "^0.456.0",
"qrcode.react": "^3.1.0",
"rollup-plugin-typescript2": "^0.36.0",
"tailwind-merge": "^2.5.4",
"tiny-secp256k1": "^2.2.3"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-typescript": "^11.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.49",
"rollup": "^4.0.0",
"rollup-plugin-dts": "^6.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.0",
"tailwindcss": "^3.4.15",
"typescript": "^5.0.0"
}
}