-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 741 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 741 Bytes
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
{
"name": "kds-uti-engine",
"version": "1.0.0",
"description": "KDS-UTI Protocol Engine: Canonical JSON hashing and hash-chain verification (TypeScript)",
"type": "module",
"main": "dist/kds-uti-engine.js",
"types": "dist/kds-uti-engine.d.ts",
"scripts": {
"build": "tsc && ren \"dist\\kds-uti-engine.v1.0.0.js\" kds-uti-engine.js && ren \"dist\\kds-uti-engine.v1.0.0.d.ts\" kds-uti-engine.d.ts",
"test": "node dist/kds-uti-engine.js"
},
"keywords": [
"KDS",
"UTI",
"canonical JSON",
"SHA-256",
"hash chain",
"deterministic",
"TypeScript",
"offline",
"event ledger"
],
"author": "Dragan Škondrić",
"license": "MIT",
"devDependencies": {
"typescript": "^5.2.2"
}
}