UNPKG

pricehistory

Version:

Transforms raw OHLCV series data into enriched candles with technical indicators, pattern recognition, and trend analysis.

69 lines (68 loc) 1.96 kB
{ "name": "pricehistory", "packageManager": "yarn@4.13.0", "version": "0.1.2", "description": "Transforms raw OHLCV series data into enriched candles with technical indicators, pattern recognition, and trend analysis.", "author": "Nameer Rizvi (https://github.com/nameer-rizvi)", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/nameer-rizvi/pricehistory.git" }, "homepage": "https://github.com/nameer-rizvi/pricehistory#readme", "bugs": { "url": "https://github.com/nameer-rizvi/pricehistory/issues" }, "keywords": [ "typescript", "utils", "utilities", "esm", "cjs" ], "files": [ "dist", "README.md" ], "main": "./dist/cjs/index.js", "module": "./dist/esm/index.js", "types": "./dist/cjs/types/index.d.ts", "exports": { ".": { "import": { "types": "./dist/esm/types/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/types/index.d.ts", "default": "./dist/cjs/index.js" } } }, "publishConfig": { "access": "public" }, "scripts": { "update": "yarn && node scripts/updateDeps.js", "clean": "rimraf dist", "lint": "eslint src/**/*", "lint:fix": "eslint src/**/* --fix", "build:cjs": "tsc -p tsconfig.cjs.json", "build:esm": "tsc -p tsconfig.esm.json", "build": "yarn clean && yarn lint && yarn build:cjs && yarn build:esm && node scripts/postbuild.mjs && echo '✅ Build complete! CJS and ESM outputs ready in dist/'", "test:cjs": "node tests/test.cjs", "test:esm": "node tests/test.mjs", "test": "yarn build && yarn test:cjs && yarn test:esm", "prepublishOnly": "yarn build" }, "devDependencies": { "@eslint/js": "^10.0.1", "eslint": "^10.2.0", "rimraf": "^6.1.3", "typescript": "^6.0.2", "typescript-eslint": "^8.58.0" }, "dependencies": { "@nameer/utils": "^0.1.3" } }