@cfxdevkit/wallet 0.1.0 → 1.0.7

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.
Files changed (1) hide show
  1. package/package.json +26 -25
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cfxdevkit/wallet",
3
- "version": "0.1.0",
3
+ "version": "1.0.7",
4
4
  "description": "Advanced wallet abstractions for Conflux - session keys, transaction batching, and embedded wallets",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -36,9 +36,27 @@
36
36
  },
37
37
  "./package.json": "./package.json"
38
38
  },
39
+ "scripts": {
40
+ "build": "tsup",
41
+ "build:watch": "tsup --watch",
42
+ "type-check": "tsc --noEmit",
43
+ "dev": "tsx src/index.ts",
44
+ "test": "vitest run --pass-with-no-tests",
45
+ "test:ui": "vitest --ui",
46
+ "test:run": "vitest --run",
47
+ "test:coverage": "vitest --run --coverage --pass-with-no-tests",
48
+ "test:watch": "vitest --watch",
49
+ "clean": "rm -rf dist",
50
+ "lint": "biome lint src/",
51
+ "lint:fix": "biome lint --write src/",
52
+ "format": "biome format src/",
53
+ "format:fix": "biome format --write src/",
54
+ "check": "biome check src/",
55
+ "check:fix": "biome check --write src/"
56
+ },
39
57
  "dependencies": {
40
- "viem": "^2.43.3",
41
- "@cfxdevkit/core": "0.1.0"
58
+ "@cfxdevkit/core": "workspace:*",
59
+ "viem": "^2.43.3"
42
60
  },
43
61
  "devDependencies": {
44
62
  "@biomejs/biome": "^2.3.10",
@@ -63,31 +81,14 @@
63
81
  ],
64
82
  "author": "Conflux DevKit Team",
65
83
  "license": "Apache-2.0",
84
+ "packageManager": "pnpm@10.11.0",
66
85
  "repository": {
67
86
  "type": "git",
68
- "url": "git+https://github.com/cfxdevkit/conflux-devkit.git",
87
+ "url": "git+https://github.com/cfxdevkit/devkit.git",
69
88
  "directory": "packages/wallet"
70
89
  },
71
- "homepage": "https://github.com/cfxdevkit/conflux-devkit#readme",
90
+ "homepage": "https://github.com/cfxdevkit/devkit#readme",
72
91
  "bugs": {
73
- "url": "https://github.com/cfxdevkit/conflux-devkit/issues"
74
- },
75
- "scripts": {
76
- "build": "tsup",
77
- "build:watch": "tsup --watch",
78
- "type-check": "tsc --noEmit",
79
- "dev": "tsx src/index.ts",
80
- "test": "vitest run --pass-with-no-tests",
81
- "test:ui": "vitest --ui",
82
- "test:run": "vitest --run",
83
- "test:coverage": "vitest --run --coverage",
84
- "test:watch": "vitest --watch",
85
- "clean": "rm -rf dist",
86
- "lint": "biome lint src/",
87
- "lint:fix": "biome lint --write src/",
88
- "format": "biome format src/",
89
- "format:fix": "biome format --write src/",
90
- "check": "biome check src/",
91
- "check:fix": "biome check --write src/"
92
+ "url": "https://github.com/cfxdevkit/devkit/issues"
92
93
  }
93
- }
94
+ }