{
	"name": "@ismael1361/utils",
	"version": "1.0.4",
	"description": "A collection of utility functions built with TypeScript",
	"main": "dist/index.js",
	"module": "dist/index.esm.js",
	"types": "dist/index.d.ts",
	"files": [
		"dist"
	],
	"private": false,
	"publishConfig": {
		"access": "public",
		"registry": "https://registry.npmjs.org/"
	},
	"scripts": {
		"build": "npm run clean && npm run build:types && npm run build:bundles",
		"clean": "rimraf dist",
		"build:types": "tsc --emitDeclarationOnly --declaration --outDir dist/types",
		"build:bundles": "rollup -c --bundleConfigAsCjs",
		"dev": "rollup -c --bundleConfigAsCjs -w",
		"test": "jest",
		"test:watch": "jest --watchAll",
		"prepublishOnly": "npm run build && npm test",
		"npm:publish": "npm run build && npm publish --access=public"
	},
	"keywords": [
		"utils",
		"utilities",
		"typescript",
		"helpers",
		"functions"
	],
	"author": "ISMAEL1361",
	"license": "MIT",
	"repository": {
		"type": "git",
		"url": "git+https://github.com/ismael1361/utils.git"
	},
	"bugs": {
		"url": "https://github.com/ismael1361/utils/issues"
	},
	"homepage": "https://github.com/ismael1361/utils#readme",
	"devDependencies": {
		"@rollup/plugin-commonjs": "^25.0.0",
		"@rollup/plugin-node-resolve": "^15.0.0",
		"@rollup/plugin-terser": "^0.4.0",
		"@rollup/plugin-typescript": "^11.0.0",
		"@types/jest": "^29.0.0",
		"jest": "^29.0.0",
		"jest-environment-node": "^30.1.2",
		"rimraf": "^6.0.1",
		"rollup": "^3.0.0",
		"rollup-plugin-dts": "^6.0.0",
		"ts-jest": "^29.0.0",
		"tslib": "^2.8.1",
		"typescript": "^5.0.0"
	}
}
