-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.49 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.49 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
{
"name": "bitbrew",
"version": "0.1.0-alpha",
"description": "A tool for crafting Bitcoin testing environments with Docker",
"bin": {
"bitbrew": "dist/src/bin/bitbrew.js"
},
"scripts": {
"start": "ts-node src/index.ts",
"test": "vitest",
"build": "npx tsc",
"lint": "npx eslint src test",
"lint:fix": "npm run lint -- --fix",
"format": "npx prettier src test --check",
"format:fix": "npm run format -- --write",
"prepare": "husky"
},
"keywords": [
"bitcoin",
"docker",
"cli",
"testnet"
],
"author": {
"name":"rishkwal",
"url": "https://github.com/rishkwal"
},
"license": "GPL-3.0-only",
"repository": "https://github.com/rishkwal/bitbrew",
"homepage": "https://github.com/rishkwal/bitbrew#readme",
"type": "module",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"cron": "^3.1.7",
"dockerode": "^4.0.2",
"env-paths": "^3.0.0",
"figlet": "^1.7.0",
"ora": "^8.0.1",
"pino": "^9.2.0",
"prettyjson": "^1.2.5"
},
"devDependencies": {
"@eslint/js": "^9.7.0",
"@types/dockerode": "^3.3.29",
"@types/figlet": "^1.5.8",
"@types/node": "^20.14.9",
"@types/prettyjson": "^0.0.33",
"eslint": "^9.7.0",
"globals": "^15.8.0",
"husky": "^9.0.11",
"pino-pretty": "^11.2.1",
"prettier": "3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.2",
"typescript-eslint": "^7.16.0",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^2.0.1"
}
}