UNPKG

@the-convocation/twitter-scraper

Version:

A port of n0madic/twitter-scraper to Node.js.

94 lines (93 loc) 2.62 kB
{ "name": "@the-convocation/twitter-scraper", "description": "A port of n0madic/twitter-scraper to Node.js.", "keywords": [ "x", "twitter", "scraper", "crawler" ], "version": "0.17.2", "main": "dist/default/cjs/index.js", "types": "./dist/types/index.d.ts", "exports": { "types": "./dist/types/index.d.ts", "node": { "import": "./dist/node/esm/index.mjs", "require": "./dist/node/cjs/index.cjs" }, "default": { "import": "./dist/default/esm/index.mjs", "require": "./dist/default/cjs/index.js" } }, "repository": "https://github.com/the-convocation/twitter-scraper.git", "author": "karashiiro <49822414+karashiiro@users.noreply.github.com>", "license": "MIT", "engines": { "node": ">=16" }, "packageManager": "yarn@1.22.19", "scripts": { "build": "rimraf dist && rollup -c", "commit": "cz", "docs:generate": "typedoc --options typedoc.json", "docs:deploy": "yarn docs:generate && gh-pages -d docs", "format": "prettier --write src/**/*.ts", "prepare": "husky install", "test": "jest" }, "dependencies": { "@sinclair/typebox": "^0.32.20", "cross-fetch": "^4.0.0-alpha.5", "debug": "^4.4.1", "headers-polyfill": "^3.1.2", "json-stable-stringify": "^1.0.2", "otpauth": "^9.2.2", "set-cookie-parser": "^2.6.0", "tough-cookie": "^4.1.2", "tslib": "^2.5.2" }, "devDependencies": { "@commitlint/cli": "^17.6.3", "@commitlint/config-conventional": "^17.6.3", "@tsconfig/node16": "^16.1.0", "@types/debug": "^4.1.12", "@types/jest": "^29.5.1", "@types/json-stable-stringify": "^1.0.34", "@types/set-cookie-parser": "^2.4.2", "@types/tough-cookie": "^4.0.2", "@typescript-eslint/eslint-plugin": "^5.59.7", "@typescript-eslint/parser": "^5.59.7", "cz-conventional-changelog": "^3.3.0", "dotenv": "^16.3.1", "esbuild": "^0.21.5", "eslint": "^8.41.0", "eslint-config-prettier": "^8.8.0", "eslint-plugin-prettier": "^4.2.1", "gh-pages": "^5.0.0", "https-proxy-agent": "^7.0.2", "husky": "^8.0.3", "jest": "^29.5.0", "lint-staged": "^13.2.2", "prettier": "^2.8.8", "rimraf": "^5.0.7", "rollup": "^4.18.0", "rollup-plugin-dts": "^6.1.1", "rollup-plugin-esbuild": "^6.1.1", "ts-jest": "^29.1.0", "typedoc": "^0.27.6", "typescript": "^5.0.4" }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } }, "lint-staged": { "*.{js,ts}": [ "eslint --cache --fix", "prettier --write" ] } }