random-bunny/package.json
Ethan Lane 9097f5b756
All checks were successful
Test / build (push) Successful in 52s
Fix audits
2025-07-09 11:44:48 +01:00

76 lines
1.7 KiB
JSON

{
"name": "random-bunny",
"version": "2.3.0",
"description": "Get a random subreddit image url",
"license": "MIT",
"author": "Vylpes",
"exports": "./dist/index.js",
"typings": "./dist/index.d.ts",
"bin": {
"random-bunny": "./dist/cli.js"
},
"main": "./dist/index.js",
"keywords": [
"rabbit",
"bunny",
"bun",
"subreddit",
"reddit",
"random",
"placeholder"
],
"dependencies": {
"commander": "^14.0.0",
"glob-parent": "^6.0.0",
"got-cjs": "^12.5.4",
"htmlparser2": "^10.0.0",
"linqts": "^2.0.0"
},
"scripts": {
"build": "tsc",
"start": "node dist/cli.js",
"test": "jest",
"lint": "eslint .",
"release": "np --no-publish",
"package": "pkg . --no-bytecode"
},
"bugs": {
"url": "https://gitea.vylpes.xyz/RabbitLabs/random-bunny/issues",
"email": "helpdesk@vylpes.com"
},
"homepage": "https://gitea.vylpes.xyz/RabbitLabs/random-bunny",
"funding": "https://ko-fi.com/vylpes",
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.30.1",
"@jest/globals": "^30.0.4",
"@types/eslint": "^9.6.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.12",
"@typescript-eslint/eslint-plugin": "^8.36.0",
"@typescript-eslint/parser": "^8.36.0",
"@yao-pkg/pkg": "^6.5.1",
"eslint": "^9.30.1",
"jest": "^30.0.4",
"jest-mock-extended": "^4.0.0",
"np": "^10.2.0",
"ts-jest": "^29.4.0",
"ts-mockito": "^2.6.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.36.0"
},
"resolutions": {
"**/brace-expansion": "^2.0.2"
},
"files": [
"dist"
],
"pkg": {
"scripts": "dist/**/*.js",
"targets": [
"latest-linux-x64",
"latest-win-x64"
],
"outputPath": "bin"
}
}