Skip to content

Commit

Permalink
🚀 Initial Setup
Browse files Browse the repository at this point in the history
  • Loading branch information
Nishu0 committed May 7, 2024
1 parent 49fbfe6 commit 1583137
Show file tree
Hide file tree
Showing 31 changed files with 2,387 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules/
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
build:
npm install -g pnpm
pnpm install
run:
pnpm tsx src/index.ts
24 changes: 24 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"name": "code-challenge-2024-nishu0",
"version": "1.0.0",
"description": "Summer of Bitcoin 2024: Mine your first block",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bitcoinjs-lib": "^6.1.5",
"ecpair": "^2.1.0",
"lodash.clonedeep": "^4.5.0",
"tiny-secp256k1": "^2.2.3",
"tsx": "^4.7.1",
"typescript": "^5.4.3"
},
"devDependencies": {
"@types/lodash.clonedeep": "^4.5.9",
"@types/node": "^20.11.30"
}
}
Loading

0 comments on commit 1583137

Please sign in to comment.