{ "name": "klingex", "version": "1.0.0", "description": "Official JavaScript/TypeScript SDK for KlingEx Exchange API", "main": "dist/index.js", "module": "dist/index.mjs", "types": "dist/index.d.ts", "exports": { ".": { "import": "./dist/index.mjs", "require": "./dist/index.js", "types": "./dist/index.d.ts" } }, "files": [ "dist" ], "scripts": { "build": "tsup src/index.ts --format cjs,esm --dts --clean", "dev": "tsup src/index.ts --format cjs,esm --dts --watch", "test": "vitest", "lint": "eslint src/", "prepublishOnly": "npm run build" }, "keywords": [ "klingex", "exchange", "crypto", "trading", "api", "sdk", "bitcoin", "cryptocurrency" ], "author": "KlingEx", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/Klingon-tech/klingex-js" }, "homepage": "https://klingex.io", "bugs": { "url": "https://github.com/Klingon-tech/klingex-js/issues" }, "devDependencies": { "@types/node": "^20.10.0", "tsup": "^8.0.1", "typescript": "^5.3.0", "vitest": "^1.0.0", "eslint": "^8.55.0", "@typescript-eslint/eslint-plugin": "^6.13.0", "@typescript-eslint/parser": "^6.13.0" }, "dependencies": { "ws": "^8.14.2" }, "engines": { "node": ">=18.0.0" } }