-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
104 lines (104 loc) · 2.54 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
99
100
101
102
103
104
{
"name": "@useelven/core",
"version": "0.22.0",
"description": "Core React hooks for MultiversX DApps",
"license": "MIT",
"author": "Julian Ćwirko <julian.io>",
"homepage": "https://www.useElven.com",
"repository": {
"type": "git",
"url": "git+https://github.com/useElven/core.git"
},
"keywords": [
"multiversx",
"xPortal",
"blockchain",
"sdk",
"react",
"nextjs",
"dapp",
"smart contracts",
"xAlias"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"exports": {
".": {
"types": {
"import": "./dist/index.d.mts",
"default": "./dist/index.d.ts"
},
"import": "./dist/index.mjs",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"engines": {
"node": "20 || >=22"
},
"tsup": {
"banner": {
"js": "'use client';"
},
"entry": [
"./src/index.tsx"
],
"clean": true,
"format": [
"esm",
"cjs"
],
"dts": true,
"splitting": true,
"minify": true
},
"scripts": {
"build": "rimraf build && tsup",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src/** --fix",
"check-types": "tsc",
"prettier": "prettier --write 'src/**/*.{js,ts,json}'",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@multiversx/sdk-extension-provider": "4.0.0",
"@multiversx/sdk-hw-provider": "7.0.0",
"@multiversx/sdk-native-auth-client": "1.0.9",
"@multiversx/sdk-wallet-connect-provider": "5.0.0",
"@multiversx/sdk-web-wallet-provider": "4.0.0",
"@multiversx/sdk-webview-provider": "2.0.0-alpha.0",
"bignumber.js": "9.1.2",
"lodash.clonedeep": "4.5.0",
"swr": "2.2.5",
"valtio": "1.13.2"
},
"devDependencies": {
"@eslint/compat": "^1.2.2",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"@multiversx/sdk-core": "13.14.1",
"@types/lodash.clonedeep": "4.5.9",
"@types/node": "22.9.0",
"@types/react": "18.3.12",
"@typescript-eslint/eslint-plugin": "8.13.0",
"@typescript-eslint/parser": "8.13.0",
"eslint": "9.14.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "5.0.0",
"globals": "^15.12.0",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"tsup": "8.3.5",
"typescript": "5.6.3"
},
"peerDependencies": {
"@multiversx/sdk-core": "^13.5.0",
"react": "^18.2.0"
}
}