miniledger 0.1.0 → 0.2.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/README.md +165 -35
- package/dashboard/app.js +744 -156
- package/dashboard/index.html +33 -84
- package/dashboard/style.css +500 -75
- package/dist/bin/miniledger.cjs +135 -23
- package/dist/bin/miniledger.cjs.map +1 -1
- package/package.json +33 -9
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "miniledger",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"description": "
|
|
5
|
+
"description": "Private blockchain framework for Node.js — zero-config, embeddable, SQL-queryable. Enterprise-grade permissioned ledger with Raft consensus, smart contracts, and built-in block explorer. The easiest way to add a distributed ledger to any application.",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
7
7
|
"module": "dist/index.js",
|
|
8
8
|
"types": "dist/index.d.ts",
|
|
@@ -40,17 +40,41 @@
|
|
|
40
40
|
"keywords": [
|
|
41
41
|
"blockchain",
|
|
42
42
|
"private-blockchain",
|
|
43
|
-
"
|
|
44
|
-
"
|
|
43
|
+
"permissioned-blockchain",
|
|
44
|
+
"consortium-blockchain",
|
|
45
|
+
"enterprise-blockchain",
|
|
45
46
|
"distributed-ledger",
|
|
47
|
+
"dlt",
|
|
48
|
+
"ledger",
|
|
49
|
+
"hyperledger-alternative",
|
|
50
|
+
"blockchain-framework",
|
|
51
|
+
"blockchain-platform",
|
|
52
|
+
"smart-contracts",
|
|
53
|
+
"raft-consensus",
|
|
46
54
|
"sqlite",
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
55
|
+
"sql-blockchain",
|
|
56
|
+
"block-explorer",
|
|
57
|
+
"embeddable-blockchain",
|
|
58
|
+
"nodejs-blockchain",
|
|
59
|
+
"typescript-blockchain",
|
|
60
|
+
"web3",
|
|
61
|
+
"supply-chain",
|
|
62
|
+
"audit-trail",
|
|
63
|
+
"immutable-ledger",
|
|
64
|
+
"on-chain-governance",
|
|
65
|
+
"p2p",
|
|
66
|
+
"zero-config"
|
|
51
67
|
],
|
|
52
|
-
"author": "",
|
|
68
|
+
"author": "Chainscore Labs <hello@chainscore.finance> (https://chainscorelabs.com)",
|
|
53
69
|
"license": "Apache-2.0",
|
|
70
|
+
"repository": {
|
|
71
|
+
"type": "git",
|
|
72
|
+
"url": "https://github.com/Chainscore/miniledger"
|
|
73
|
+
},
|
|
74
|
+
"homepage": "https://github.com/Chainscore/miniledger#readme",
|
|
75
|
+
"bugs": {
|
|
76
|
+
"url": "https://github.com/Chainscore/miniledger/issues"
|
|
77
|
+
},
|
|
54
78
|
"dependencies": {
|
|
55
79
|
"@hono/node-server": "^1.19.9",
|
|
56
80
|
"@noble/ciphers": "^2.1.1",
|