@tuwaio/nova-transactions 0.0.1
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/LICENSE +201 -0
- package/README.md +144 -0
- package/dist/chunk-HIULR6AD.js +2 -0
- package/dist/chunk-HIULR6AD.js.map +1 -0
- package/dist/index.cjs +2 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.css +1494 -0
- package/dist/index.d.cts +173 -0
- package/dist/index.d.ts +173 -0
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -0
- package/dist/providers/index.cjs +2 -0
- package/dist/providers/index.cjs.map +1 -0
- package/dist/providers/index.d.cts +69 -0
- package/dist/providers/index.d.ts +69 -0
- package/dist/providers/index.js +2 -0
- package/dist/providers/index.js.map +1 -0
- package/dist/types-bqi7UbSO.d.cts +625 -0
- package/dist/types-bqi7UbSO.d.ts +625 -0
- package/package.json +98 -0
package/package.json
ADDED
@@ -0,0 +1,98 @@
|
|
1
|
+
{
|
2
|
+
"name": "@tuwaio/nova-transactions",
|
3
|
+
"version": "0.0.1",
|
4
|
+
"private": false,
|
5
|
+
"author": "Oleksandr Tkach",
|
6
|
+
"license": "Apache-2.0",
|
7
|
+
"description": "A React component library that provides the UI for @tuwaio/pulsar-core. Includes components, providers, and i18n support for transaction tracking.",
|
8
|
+
"main": "./dist/index.js",
|
9
|
+
"module": "./dist/index.mjs",
|
10
|
+
"types": "./dist/index.d.ts",
|
11
|
+
"publishConfig": {
|
12
|
+
"access": "public"
|
13
|
+
},
|
14
|
+
"files": [
|
15
|
+
"dist"
|
16
|
+
],
|
17
|
+
"type": "module",
|
18
|
+
"keywords": [
|
19
|
+
"react",
|
20
|
+
"web3",
|
21
|
+
"hooks",
|
22
|
+
"transaction",
|
23
|
+
"tracking",
|
24
|
+
"ui",
|
25
|
+
"components",
|
26
|
+
"tailwind",
|
27
|
+
"wagmi",
|
28
|
+
"viem",
|
29
|
+
"i18n",
|
30
|
+
"modal",
|
31
|
+
"toast",
|
32
|
+
"design-system",
|
33
|
+
"nova",
|
34
|
+
"tuwa"
|
35
|
+
],
|
36
|
+
"repository": {
|
37
|
+
"type": "git",
|
38
|
+
"url": "git+https://github.com/TuwaIO/nova-uikit.git",
|
39
|
+
"directory": "packages/nova-transactions"
|
40
|
+
},
|
41
|
+
"homepage": "https://github.com/TuwaIO/nova-uikit",
|
42
|
+
"bugs": {
|
43
|
+
"url": "https://github.com/TuwaIO/nova-uikit/issues"
|
44
|
+
},
|
45
|
+
"contributors": [
|
46
|
+
{
|
47
|
+
"name": "Oleksandr Tkach",
|
48
|
+
"url": "https://github.com/Argeare5"
|
49
|
+
}
|
50
|
+
],
|
51
|
+
"dependencies": {
|
52
|
+
"@tuwaio/pulsar-core": "latest",
|
53
|
+
"@tuwaio/pulsar-evm": "latest",
|
54
|
+
"dayjs": "^1.11.13",
|
55
|
+
"ethereum-blockies-base64": "^1.0.2",
|
56
|
+
"@tuwaio/nova-core": "^0.0.1"
|
57
|
+
},
|
58
|
+
"peerDependencies": {
|
59
|
+
"@bgd-labs/react-web3-icons": ">=1",
|
60
|
+
"@heroicons/react": ">=2",
|
61
|
+
"@radix-ui/react-dialog": ">=1",
|
62
|
+
"@wagmi/core": ">=2",
|
63
|
+
"framer-motion": ">=12",
|
64
|
+
"immer": ">=10",
|
65
|
+
"react": ">=18",
|
66
|
+
"react-dom": ">=18",
|
67
|
+
"react-toastify": ">=11",
|
68
|
+
"tailwindcss": ">=4",
|
69
|
+
"viem": ">=2",
|
70
|
+
"zustand": ">=5"
|
71
|
+
},
|
72
|
+
"devDependencies": {
|
73
|
+
"@bgd-labs/react-web3-icons": "^1.34.0",
|
74
|
+
"@heroicons/react": "^2.2.0",
|
75
|
+
"@radix-ui/react-dialog": "^1.1.15",
|
76
|
+
"@tailwindcss/postcss": "^4.1.11",
|
77
|
+
"@types/react": "^19.1.10",
|
78
|
+
"@types/react-dom": "^19.1.7",
|
79
|
+
"@wagmi/core": "^2.19.0",
|
80
|
+
"autoprefixer": "^10.4.21",
|
81
|
+
"clsx": "^2.1.1",
|
82
|
+
"framer-motion": "^12.23.12",
|
83
|
+
"immer": "^10.1.1",
|
84
|
+
"postcss": "^8.5.6",
|
85
|
+
"postcss-cli": "^11.0.1",
|
86
|
+
"react": "^19.1.1",
|
87
|
+
"react-dom": "^19.1.1",
|
88
|
+
"react-toastify": "^11.0.5",
|
89
|
+
"tsup": "^8.5.0",
|
90
|
+
"typescript": "~5.9.2",
|
91
|
+
"tailwindcss": "^4.1.12",
|
92
|
+
"viem": "^2.33.3",
|
93
|
+
"zustand": "^5.0.7"
|
94
|
+
},
|
95
|
+
"scripts": {
|
96
|
+
"build": "tsup && pnpm exec postcss ./src/styles/app.css -o ./dist/index.css"
|
97
|
+
}
|
98
|
+
}
|