@chainvue/verus-sdk 0.4.0 → 0.4.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.
Files changed (1) hide show
  1. package/package.json +11 -22
package/package.json CHANGED
@@ -1,17 +1,9 @@
1
1
  {
2
2
  "name": "@chainvue/verus-sdk",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "100% offline, fully typed TypeScript SDK for Verus transaction signing",
5
5
  "main": "dist/bundle.js",
6
6
  "types": "dist/index.d.ts",
7
- "scripts": {
8
- "build": "tsc",
9
- "test": "vitest run",
10
- "test:watch": "vitest",
11
- "clean": "rm -rf dist",
12
- "prepublishOnly": "pnpm run clean && pnpm run build && pnpm run bundle && pnpm run test",
13
- "bundle": "tsup"
14
- },
15
7
  "keywords": [
16
8
  "verus",
17
9
  "cryptocurrency",
@@ -27,23 +19,23 @@
27
19
  "access": "public"
28
20
  },
29
21
  "dependencies": {
30
- "@bitgo/utxo-lib": "github:VerusCoin/BitGoJS#utxo-lib-verus",
31
- "bitcoin-ops": "github:VerusCoin/bitcoin-ops",
32
22
  "bn.js": "^5.2.2",
33
23
  "bs58check": "^2.1.2",
34
24
  "create-hash": "^1.2.0",
35
25
  "ecpair": "^2.1.0",
36
26
  "tiny-secp256k1": "^2.2.4",
37
- "verus-typescript-primitives": "github:VerusCoin/verus-typescript-primitives#4243cd075b4f68df1ce72fd2fd9c9b18ac36767e",
38
27
  "wif": "^4.0.0"
39
28
  },
40
29
  "devDependencies": {
30
+ "@bitgo/utxo-lib": "github:VerusCoin/BitGoJS#utxo-lib-verus",
41
31
  "@types/bn.js": "^5.2.0",
42
32
  "@types/bs58check": "^2.1.2",
43
33
  "@types/create-hash": "^1.2.6",
44
34
  "@types/node": "^20.19.33",
35
+ "bitcoin-ops": "github:VerusCoin/bitcoin-ops",
45
36
  "tsup": "^8.5.1",
46
37
  "typescript": "^5.9.3",
38
+ "verus-typescript-primitives": "github:VerusCoin/verus-typescript-primitives#4243cd075b4f68df1ce72fd2fd9c9b18ac36767e",
47
39
  "vitest": "^1.6.1"
48
40
  },
49
41
  "engines": {
@@ -52,14 +44,11 @@
52
44
  "files": [
53
45
  "dist/**/*"
54
46
  ],
55
- "packageManager": "pnpm@9.15.0",
56
- "pnpm": {
57
- "overrides": {
58
- "bitcoin-ops": "github:VerusCoin/bitcoin-ops",
59
- "verus-typescript-primitives": "github:VerusCoin/verus-typescript-primitives#4243cd075b4f68df1ce72fd2fd9c9b18ac36767e"
60
- },
61
- "patchedDependencies": {
62
- "bitcoin-ops": "patches/bitcoin-ops.patch"
63
- }
47
+ "scripts": {
48
+ "build": "tsc",
49
+ "test": "vitest run",
50
+ "test:watch": "vitest",
51
+ "clean": "rm -rf dist",
52
+ "bundle": "tsup"
64
53
  }
65
- }
54
+ }