-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (97 loc) · 2.66 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "use-cardano-web3-auth",
"version": "1.1.0",
"description": "A React hook for Cardano Web3 authentication.",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": "^16.15.0 || ^17.0.0 || ^18.0.0"
},
"exports": {
".": "./dist/index.js"
},
"type": "module",
"scripts": {
"build": "rollup -c",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run build",
"cypress:open": "cypress open",
"test": "cypress run --component"
},
"keywords": [
"react",
"cardano",
"web3",
"authentication",
"hook"
],
"author": "Rodrigo",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/preset-env": "^7.24.4",
"@babel/preset-react": "^7.24.1",
"@babel/preset-typescript": "^7.24.1",
"@cypress/webpack-preprocessor": "^6.0.1",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-typescript": "^11.1.6",
"@rollup/plugin-url": "^8.0.2",
"@types/jsonwebtoken": "^9.0.6",
"@types/react": "^18.2.56",
"assert": "^2.1.0",
"babel-loader": "^9.1.3",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"cypress": "^13.7.3",
"dotenv": "^16.4.5",
"file-loader": "^6.2.0",
"fs": "^0.0.1-security",
"https-browserify": "^1.0.0",
"lucid-cardano": "^0.10.7",
"os-browserify": "^0.3.0",
"path": "^0.12.7",
"process": "^0.11.10",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"rollup": "^2.79.1",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-ignore": "^1.0.10",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-polyfill-node": "^0.13.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"rollup-plugin-wasm": "^3.0.0",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"typescript": "^5.3.3",
"url": "^0.11.3",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"peerDependencies": {
"lucid-cardano": "^0.10.7",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"@moralisweb3/common-evm-utils": "^2.25.4",
"@solana/web3.js": "^1.91.4",
"@toruslabs/constants": "^13.2.0",
"@web3auth/base": "^7.3.2",
"@web3auth/ethereum-provider": "^8.1.0",
"@web3auth/mpc-core-kit": "^2.1.0",
"jsonwebtoken": "^9.0.2",
"moralis": "^2.25.4",
"web3": "^4.5.0"
},
"files": [
"dist"
],
"dependencies": {
}
}