@vechain/vechain-kit 0.11.0 → 1.0.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 +260 -6
- package/dist/index.d.ts +1860 -227
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/package.json +64 -56
package/package.json
CHANGED
|
@@ -1,57 +1,65 @@
|
|
|
1
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
|
-
|
|
2
|
+
"name": "@vechain/vechain-kit",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"private": false,
|
|
5
|
+
"homepage": "https://github.com/vechain/vechain-kit",
|
|
6
|
+
"repository": "github:vechain/vechain-kit",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"sideEffects": false,
|
|
9
|
+
"type": "module",
|
|
10
|
+
"main": "./dist/index.js",
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"files": [
|
|
13
|
+
"dist",
|
|
14
|
+
"package.json",
|
|
15
|
+
"README.md",
|
|
16
|
+
"LICENSE"
|
|
17
|
+
],
|
|
18
|
+
"scripts": {
|
|
19
|
+
"build": "tsup",
|
|
20
|
+
"watch": "tsup --watch",
|
|
21
|
+
"clean": "rm -rf dist .turbo",
|
|
22
|
+
"lint": "eslint",
|
|
23
|
+
"purge": "yarn clean && rm -rf node_modules",
|
|
24
|
+
"translate": "dotenv -e .env -- translo-cli"
|
|
25
|
+
},
|
|
26
|
+
"dependencies": {
|
|
27
|
+
"@chakra-ui/react": "^2.8.2",
|
|
28
|
+
"@choc-ui/chakra-autocomplete": "^5.3.0",
|
|
29
|
+
"@privy-io/cross-app-connect": "^0.1.2",
|
|
30
|
+
"@privy-io/react-auth": "2.0.1",
|
|
31
|
+
"@rainbow-me/rainbowkit": "^2.1.5",
|
|
32
|
+
"@tanstack/react-query": "^5.63.0",
|
|
33
|
+
"@tanstack/react-query-devtools": "^5.64.1",
|
|
34
|
+
"@vechain/dapp-kit-react": "1.4.1",
|
|
35
|
+
"@vechain/picasso": "^2.1.1",
|
|
36
|
+
"@vechain/sdk-core": "^1.0.0-rc.5",
|
|
37
|
+
"@vechain/sdk-network": "^1.0.0-rc.5",
|
|
38
|
+
"@vechain/vebetterdao-contracts": "^4.1.0",
|
|
39
|
+
"dotenv": "^16.4.7",
|
|
40
|
+
"ethers": "^6.13.5",
|
|
41
|
+
"framer-motion": "^11.15.0",
|
|
42
|
+
"i18next": "^24.2.1",
|
|
43
|
+
"i18next-browser-languagedetector": "^8.0.2",
|
|
44
|
+
"net": "^1.0.2",
|
|
45
|
+
"react": "^18.2.0",
|
|
46
|
+
"react-i18next": "^15.4.0",
|
|
47
|
+
"react-icons": "^5.4.0",
|
|
48
|
+
"react-qrcode-logo": "^3.0.0",
|
|
49
|
+
"translo-cli": "^1.0.6",
|
|
50
|
+
"viem": "^2.21.3",
|
|
51
|
+
"wagmi": "^2"
|
|
52
|
+
},
|
|
53
|
+
"devDependencies": {
|
|
54
|
+
"@types/react": "^18.2.28",
|
|
55
|
+
"@types/react-dom": "^18.2.13",
|
|
56
|
+
"@wagmi/core": "^2.13.4",
|
|
57
|
+
"dotenv-cli": "^8.0.0",
|
|
58
|
+
"eslint": "^9.12.0",
|
|
59
|
+
"eslint-plugin-i18next": "^6.1.1",
|
|
60
|
+
"tsup": "*",
|
|
61
|
+
"typescript": "*",
|
|
62
|
+
"vite": "^4.5.5",
|
|
63
|
+
"vitest": "^0.34.6"
|
|
64
|
+
}
|
|
65
|
+
}
|