{
    "name": "vn-stock-sdk",
    "version": "1.0.1",
    "description": "Thư viện TypeScript/Node.js toàn diện để lấy dữ liệu chứng khoán Việt Nam (HOSE, HNX, UPCOM) - OHLCV, báo cáo tài chính, thông tin công ty, dữ liệu giao dịch",
    "main": "dist/index.js",
    "module": "dist/index.esm.js",
    "types": "dist/index.d.ts",
    "exports": {
        ".": {
            "require": "./dist/index.js",
            "import": "./dist/index.esm.js",
            "types": "./dist/index.d.ts"
        }
    },
    "scripts": {
        "build": "tsup src/index.ts --format cjs,esm --dts --clean",
        "dev": "tsup src/index.ts --format cjs,esm --dts --watch",
        "lint": "eslint src/**/*.ts",
        "prepublishOnly": "npm run build",
        "test:cov": "jest --coverage",
        "test": "jest tests/quote.test.ts tests/finance.test.ts tests/listing.test.ts",
        "test:live": "jest tests/live.test.ts",
        "test:all": "jest"
    },
    "keywords": [
        "vietnam",
        "stock",
        "chứng khoán",
        "HOSE",
        "HNX",
        "UPCOM",
        "VNIndex",
        "TCBS",
        "DNSE",
        "SSI",
        "VCI",
        "ohlcv",
        "financial",
        "typescript"
    ],
    "author": "Your Name",
    "license": "MIT",
    "repository": {
        "type": "git",
        "url": "https://github.com/dotranminhchu/vn-stock-sdk"
    },
    "dependencies": {
        "axios": "^1.6.0",
        "axios-retry": "^4.5.0"
    },
    "devDependencies": {
        "@types/jest": "^29.5.14",
        "@types/node": "^20.0.0",
        "axios-mock-adapter": "^2.1.0",
        "jest": "^29.7.0",
        "ts-jest": "^29.4.6",
        "ts-node": "^10.9.2",
        "tsup": "^8.0.0",
        "typescript": "^5.3.0"
    },
    "engines": {
        "node": ">=18.0.0"
    },
    "files": [
        "dist",
        "README.md"
    ]
}