bee-jokes
Version:
bee-jokes is a lightweight TypeScript/JavaScript package that delivers clean, categorized, and multilingual jokes — fast and ready to sting your apps with humor!
55 lines (54 loc) • 1.49 kB
JSON
{
"name": "bee-jokes",
"version": "1.1.0",
"description": "bee-jokes is a lightweight TypeScript/JavaScript package that delivers clean, categorized, and multilingual jokes — fast and ready to sting your apps with humor!",
"license": "MIT",
"author": "Sandeep Shome",
"repository": {
"type": "git",
"url": "https://github.com/sandeep-shome/bee-jokes.git"
},
"homepage": "https://github.com/sandeep-shome/bee-jokes#readme",
"keywords": [
"bee jokes",
"jokes",
"joke generator",
"funny",
"humor",
"random",
"bee",
"laugh",
"open source"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.js",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.js"
}
},
"scripts": {
"format": "npx prettier --write \"src/**/*.{ts,js,json}\"",
"format:check": "npx prettier --check \"src/**/*.{ts,js,json}\"",
"lint": "npx eslint \"src/**/*.{ts,js,json}\"",
"build": "rimraf dist && npx tsup",
"test": "npx vitest",
"prepare": "husky",
"push": "npm run build && npm publish --access public"
},
"devDependencies": {
"@eslint/js": "^9.29.0",
"eslint": "^9.29.0",
"globals": "^16.2.0",
"husky": "^9.1.7",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.35.0",
"vitest": "^3.2.4"
}
}