alphasquared.js
Version:
A lightweight client for AlphaSquared
42 lines • 946 B
JSON
{
"name": "alphasquared.js",
"version": "0.0.1-rc.4",
"author": "ShaunLWM",
"repository": "https://github.com/ShaunLWM/alphasquared.js.git",
"main": "./dist/index.js",
"module": "src/index.ts",
"devDependencies": {
"@types/bun": "^1.1.2"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"description": "A lightweight client for AlphaSquared",
"files": [
"dist/*"
],
"engines": {
"node": ">=18"
},
"keywords": [
"alphasquared",
"dca",
"ddca",
"btc",
"bitcoin",
"eth",
"ethereum",
"dollar cost averaging",
"trading",
"crypto",
"cryptocurrency"
],
"license": "MIT",
"scripts": {
"prepublish": "rm -rf dist && bun run build",
"build": "bun build ./src/index.ts --outdir ./dist && bun run build:declaration",
"build:declaration": "tsc --emitDeclarationOnly --project tsconfig.json"
},
"type": "module",
"types": "./dist/index.d.ts"
}