-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 888 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 888 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "shieldstack",
"version": "0.1.4",
"description": "CLI tool for ZEC/BTC portfolio tracking with goal-based scenario analysis",
"type": "module",
"main": "dist/index.js",
"bin": {
"shieldstack": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"zcash",
"bitcoin",
"crypto",
"portfolio",
"cli"
],
"author": "Teiko",
"license": "MIT",
"dependencies": {
"chalk": "^5.0.0",
"commander": "^11.0.0",
"decimal.js": "^10.0.0",
"inquirer": "^9.0.0"
},
"devDependencies": {
"@types/inquirer": "^9.0.0",
"@types/node": "^20.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
}
}