robinhood-nodets
Version:
Comprehensive TypeScript API wrapper for the Robinhood private API
58 lines (57 loc) • 1.29 kB
JSON
{
"name": "robinhood-nodets",
"version": "1.0.2",
"description": "Comprehensive TypeScript API wrapper for the Robinhood private API",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"prepare": "npm run build",
"test": "npm run typecheck",
"typecheck": "tsc --noEmit",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "https://github.com/vovanmix/robinhood-nodets.git"
},
"keywords": [
"robinhood",
"trading",
"api",
"stock",
"finance"
],
"author": "vovanmix",
"license": "MIT",
"bugs": {
"url": "https://github.com/vovanmix/robinhood-nodets/issues"
},
"homepage": "https://github.com/vovanmix/robinhood-nodets",
"devDependencies": {
"@types/node-fetch": "^2.6.12",
"@types/uuid": "^10.0.0",
"ava": "^0.17.0",
"coveralls": "^2.11.15",
"nyc": "^10.0.0",
"standard-version": "^7.0.0",
"typescript": "~4.9.5",
"uuid": "^11.0.5"
},
"dependencies": {
"node-fetch": "^3.3.1"
}
}