UNPKG

direct-helpers

Version:
44 lines (43 loc) 1.35 kB
{ "name": "direct-helpers", "version": "1.0.3", "description": "Package with basic and daily utilities", "main": "dist/index.js", "types": "dist/index.d.ts", "exports": { ".": { "import": "./dist/index.js", "require": "./dist/index.cjs" } }, "keywords": [ "utility", "typescript", "string", "number", "micro-utils" ], "homepage": "https://github.com/bhargav-tibadiya/direct-helpers#readme", "bugs": { "url": "https://github.com/bhargav-tibadiya/direct-helpers/issues" }, "repository": { "type": "git", "url": "git+https://github.com/bhargav-tibadiya/direct-helpers.git" }, "license": "ISC", "author": "Bhargav Tibadiya", "type": "module", "sideEffects": false, "scripts": { "test": "echo \"No tests yet. Coming soon!\"", "build": "tsup src/index.ts --dts --format cjs,esm --out-dir dist", "version:patch": "npm version patch && git push && git push --follow-tags && npm run build && npm publish", "version:minor": "npm version minor && git push && git push --follow-tags && npm run build && npm publish", "version:major": "npm version major && git push && git push --follow-tags && npm run build && npm publish" }, "devDependencies": { "tsup": "^8.4.0", "typescript": "^5.8.3" } }