-
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) · 725 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 725 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": "mini-blockchain",
"version": "1.0.0",
"description": "A tiny TypeScript blockchain: SHA-256 hashing, Proof-of-Work mining, and chain validation. Built as a learning project on the road to becoming a Web3/blockchain developer.",
"main": "dist/index.js",
"scripts": {
"dev": "ts-node src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "jest"
},
"keywords": [
"blockchain",
"typescript",
"sha-256",
"proof-of-work"
],
"author": "Nimra",
"license": "MIT",
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^26.1.1",
"jest": "^30.4.2",
"ts-jest": "^29.4.12",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}