forked from mahdiyari/hive-tx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.39 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.39 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "hive-tx",
"version": "7.0.1",
"description": "Lightweight and complete TypeScript SDK for Hive blockchain operations. Create, sign, and broadcast transactions with full type safety, cryptographic utilities, and serialization support. Features multi-signature transactions, memo encryption, automatic retry/failover, and comprehensive TypeScript definitions.",
"author": "Mahdi Yari",
"license": "MIT",
"type": "module",
"sideEffects": false,
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./esm": "./dist/esm/index.js",
"./cjs": "./dist/cjs/index.js"
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"browser": "./dist/browser/hive-tx.min.js",
"types": "./dist/esm/index.d.ts",
"files": [
"dist",
"CHANGELOG.md"
],
"scripts": {
"build": "npm run build:clean && npm run build:node && npm run build:browser && npm run format",
"build:node": "npm run build:esm && npm run build:cjs",
"build:esm": "tsc -p tsconfig.esm.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:browser": "webpack",
"build:clean": "rm -rf dist",
"format": "prettier --write 'src/**/*.{js,ts}'",
"test": "npm run build:esm && tsx tests/test.ts",
"test:more": "npx nve 20,22,23,24,25 npm test",
"generate:types": "tsx src/type_generators/index.ts && npm run format",
"prepublishOnly": "npm run build"
},
"keywords": [
"hive",
"blockchain",
"transaction",
"sign",
"broadcast",
"crypto",
"web3",
"typescript",
"cryptocurrency",
"decentralized",
"dapp",
"smart-contract",
"wallet"
],
"homepage": "https://github.com/mahdiyari/hive-tx",
"repository": {
"type": "git",
"url": "git+https://github.com/mahdiyari/hive-tx.git"
},
"bugs": {
"url": "https://github.com/mahdiyari/hive-tx/issues"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@noble/ciphers": "^2.1.1",
"@noble/curves": "^2.0.1",
"@noble/hashes": "^2.0.1",
"bs58": "6.0.0"
},
"devDependencies": {
"@types/node": "^24.10.4",
"@types/pg": "^8.16.0",
"openapi-typescript": "^7.10.1",
"pg": "^8.16.3",
"prettier": "^3.7.4",
"terser-webpack-plugin": "^5.3.16",
"ts-loader": "^9.5.4",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"webpack": "^5.104.1",
"webpack-cli": "^6.0.1"
}
}