UNPKG

aluvia-ts-sdk

Version:

Official Aluvia proxy management SDK for Node.js and modern JavaScript environments

96 lines 3.01 kB
{ "name": "aluvia-ts-sdk", "version": "2.1.3", "description": "Official Aluvia proxy management SDK for Node.js and modern JavaScript environments", "type": "module", "main": "./dist/cjs/index.js", "module": "./dist/esm/index.js", "types": "./dist/types/index.d.ts", "exports": { ".": { "import": "./dist/esm/index.js", "require": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts" }, "./package.json": "./package.json" }, "scripts": { "clean": "rm -rf dist", "build:esm": "tsc -p tsconfig.esm.json", "build:cjs": "tsc -p tsconfig.cjs.json && node -e \"require('fs').mkdirSync('dist/cjs',{recursive:true});require('fs').writeFileSync('dist/cjs/package.json','{\\\"type\\\":\\\"commonjs\\\"}')\"", "build:types": "tsc -p tsconfig.types.json", "build": "npm run clean && npm run build:esm && npm run build:cjs && npm run build:types", "build:watch": "tsc -p tsconfig.esm.json --watch & tsc -p tsconfig.cjs.json --watch", "dev": "npm run build:watch", "prepare": "npm run build", "prepublishOnly": "npm run build && npm run test", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "lint": "eslint src --ext .ts", "lint:fix": "eslint src --ext .ts --fix", "typecheck": "tsc -p tsconfig.esm.json --noEmit && tsc -p tsconfig.cjs.json --noEmit", "validate": "npm run typecheck && npm run lint && npm run test", "release:check": "npm run validate && npm run build && npm pack --dry-run", "release:tag": "git tag v$(node -p \"require('./package.json').version\")", "release:push": "git push origin main && git push origin --tags", "release:version": "node -p \"require('./package.json').version\"", "audit:check": "npm audit --audit-level moderate" }, "keywords": [ "proxy", "aluvia", "http", "https", "sdk", "api", "typescript", "nodejs", "proxy-management", "web-scraping", "rotating-proxy", "sticky-sessions", "smart-routing" ], "author": "Aluvia", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/xtrella/aluvia-js.git" }, "bugs": { "url": "https://github.com/xtrella/aluvia-js/issues" }, "homepage": "https://github.com/xtrella/aluvia-js#readme", "files": [ "dist/**/*", "README.md", "LICENSE" ], "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" }, "engines": { "node": ">=16.0.0", "npm": ">=8.0.0" }, "funding": { "type": "individual", "url": "https://github.com/sponsors/aluvia" }, "sideEffects": false, "dependencies": { "node-fetch": "^3.3.2" }, "devDependencies": { "@types/node": "^20.0.0", "@types/jest": "^29.5.0", "@typescript-eslint/eslint-plugin": "^6.0.0", "@typescript-eslint/parser": "^6.0.0", "eslint": "^8.0.0", "jest": "^29.0.0", "ts-jest": "^29.1.0", "typescript": "^5.0.0" } }