-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.01 KB
/
package.json
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
{
"name": "typescript-binance-cli-starter",
"private": true,
"version": "1.0.1",
"description": "A simple and zero-opinion typescript starter template for building cross-platform node-binance-api command line applications.",
"keywords": [
"typescript",
"cli",
"node-binance-api"
],
"license": "MIT",
"main": "./dist/index.js",
"bin": "./dist/cli.js",
"files": [
"dist/**/*",
"!dist/**/*.test.js"
],
"scripts": {
"dev": "ts-node ./src/cli.ts --apikey $BINANCE_APIKEY --apisecret $BINANCE_APISECRET",
"clean": "rimraf ./dist/ ./exec/",
"clean_node_modules": "rimraf ./node_modules package-lock.json",
"build": "npm run clean && tsc",
"bundle": "npm run build && pkg . -t node14-linux,node14-win,node14-macos --out-dir ./exec/"
},
"devDependencies": {
"@types/node": "^20.10.5",
"ava": "^6.0.1",
"pkg": "^5.8.1",
"rimraf": "^5.0.5",
"typescript": "^5.3.3"
},
"dependencies": {
"commander": "^11.1.0",
"node-binance-api": "^0.13.1"
}
}