reddit-explorer
Version:
Simple reddit client that allows to fetch reddit names and content from any subreddit, without any account authentication.
51 lines (50 loc) • 1.26 kB
JSON
{
"name": "reddit-explorer",
"version": "1.5.0-alpha",
"description": "Simple reddit client that allows to fetch reddit names and content from any subreddit, without any account authentication.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"build:main": "tsc -p tsconfig-main.json",
"start": "yarn build:main && node dist/main.js",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write"
},
"repository": {
"type": "git",
"url": "https://github.com/davidalvarezr/reddit-explorer"
},
"bugs": {
"url": "https://github.com/davidalvarezr/reddit-explorer/issues",
"email": "devdav@pm.me"
},
"keywords": [
"parser",
"reddit api",
"reddit client",
"reddit wrapper",
"reddit",
"search",
"subreddit",
"typescript"
],
"author": "David Alvarez Restrepo <devdav@pm.me> (https://github.com/davidalvarezr)",
"license": "MIT",
"directories": {
"test": "tests"
},
"dependencies": {
"axios": "1.6.7",
"typescript": "^4.6.3"
},
"devDependencies": {
"@types/jest": "29.5.12",
"dotenv": "16.4.1",
"jest": "29.7.0",
"prettier": "3.2.5",
"ts-jest": "29.1.2"
}
}