shohan
Version:
Production-grade utilities and tools by Shohan - Starting with Smart Cache System for Next.js applications
112 lines (111 loc) • 3.46 kB
JSON
{
"name": "shohan",
"version": "1.2.3",
"description": "Production-grade utilities and tools by Shohan - Starting with Smart Cache System for Next.js applications",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./cache": {
"types": "./dist/cache/index.d.ts",
"import": "./dist/cache/index.mjs",
"require": "./dist/cache/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"build": "tsup",
"build:watch": "tsup --watch",
"test": "jest --forceExit",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --forceExit",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"type-check": "tsc --noEmit",
"clean": "rimraf dist",
"dev": "tsup --watch",
"prepublishOnly": "npm run clean && npm run build && npm run test",
"release": "npm run prepublishOnly && npm publish --access public",
"release:patch": "npm version patch && npm run prepublishOnly && npm publish --access public",
"release:minor": "npm version minor && npm run prepublishOnly && npm publish --access public",
"release:major": "npm version major && npm run prepublishOnly && npm publish --access public",
"release:beta": "npm run prepublishOnly && npm publish --tag beta --access public",
"pack:test": "npm pack --dry-run",
"validate": "npm run build && npm run test && npm run pack:test"
},
"keywords": [
"shohan",
"utilities",
"tools",
"cache",
"caching",
"nextjs",
"redis",
"memory",
"performance",
"smart-cache",
"hybrid-cache",
"traffic-detection",
"typescript",
"production",
"database",
"optimization",
"api-cache",
"express",
"node"
],
"author": {
"name": "Md Sabbir Roshid Shohan",
"email": "shohan.dev.cse@gmail.com",
"url": "https://github.com/shohan-dev",
"portfolio": "https://shohan.dev"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/shohan-dev/shohan-npm.git"
},
"bugs": {
"url": "https://github.com/shohan-dev/shohan-npm/issues"
},
"homepage": "https://github.com/shohan-dev/shohan-npm#readme",
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"peerDependencies": {
"@upstash/redis": "^1.0.0"
},
"peerDependenciesMeta": {
"@upstash/redis": {
"optional": true
}
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.19",
"@types/react": "^19.1.8",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"tsup": "^8.0.2",
"typescript": "^5.3.3"
},
"publishConfig": {
"access": "public"
}
}