@cfxdevkit/wallet-connect 0.1.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/package.json ADDED
@@ -0,0 +1,89 @@
1
+ {
2
+ "name": "@cfxdevkit/wallet-connect",
3
+ "version": "0.1.0",
4
+ "description": "Wagmi + SIWE wallet connection layer for Conflux applications — framework-agnostic, usable in any project",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "files": [
9
+ "dist/**/*",
10
+ "README.md",
11
+ "LICENSE"
12
+ ],
13
+ "publishConfig": {
14
+ "access": "public"
15
+ },
16
+ "exports": {
17
+ ".": {
18
+ "types": "./dist/index.d.ts",
19
+ "import": "./dist/index.js",
20
+ "require": "./dist/index.cjs"
21
+ },
22
+ "./package.json": "./package.json"
23
+ },
24
+ "dependencies": {
25
+ "lucide-react": "^0.395.0",
26
+ "siwe": "^2.3.2",
27
+ "@cfxdevkit/core": "0.1.0"
28
+ },
29
+ "peerDependencies": {
30
+ "@tanstack/react-query": ">=5.0.0",
31
+ "connectkit": ">=1.8.2",
32
+ "react": "^18.0.0",
33
+ "react-dom": "^18.0.0",
34
+ "viem": ">=2.0.0",
35
+ "wagmi": ">=2.0.0"
36
+ },
37
+ "devDependencies": {
38
+ "@biomejs/biome": "^2.3.10",
39
+ "@types/node": "^25.0.3",
40
+ "@types/react": "^18.3.18",
41
+ "@types/react-dom": "^18.3.5",
42
+ "@testing-library/react": "^14.1.1",
43
+ "@vitest/coverage-v8": "^4.0.16",
44
+ "@vitest/ui": "^4.0.16",
45
+ "react": "^18.3.1",
46
+ "react-dom": "^18.3.1",
47
+ "tsup": "^8.5.1",
48
+ "typescript": "^5.9.3",
49
+ "vitest": "^4.0.16"
50
+ },
51
+ "keywords": [
52
+ "conflux",
53
+ "react",
54
+ "headless",
55
+ "components",
56
+ "ui",
57
+ "tailwind",
58
+ "blockchain",
59
+ "web3"
60
+ ],
61
+ "author": "Conflux DevKit Team",
62
+ "license": "Apache-2.0",
63
+ "repository": {
64
+ "type": "git",
65
+ "url": "git+https://github.com/cfxdevkit/conflux-devkit.git",
66
+ "directory": "packages/ui-headless"
67
+ },
68
+ "homepage": "https://github.com/cfxdevkit/conflux-devkit#readme",
69
+ "bugs": {
70
+ "url": "https://github.com/cfxdevkit/conflux-devkit/issues"
71
+ },
72
+ "scripts": {
73
+ "build": "tsup",
74
+ "build:watch": "tsup --watch",
75
+ "type-check": "tsc --noEmit",
76
+ "dev": "tsup --watch",
77
+ "test": "vitest run --pass-with-no-tests",
78
+ "test:ui": "vitest --ui",
79
+ "test:run": "vitest --run",
80
+ "test:coverage": "vitest --run --coverage",
81
+ "clean": "rm -rf dist",
82
+ "lint": "biome lint src/",
83
+ "lint:fix": "biome lint --write src/",
84
+ "format": "biome format src/",
85
+ "format:fix": "biome format --write src/",
86
+ "check": "biome check src/",
87
+ "check:fix": "biome check --write src/"
88
+ }
89
+ }