simple-lazy-debounce
Version:
Lazy delay support debounce function
74 lines (73 loc) • 1.97 kB
JSON
{
"name": "simple-lazy-debounce",
"version": "0.1.0",
"type": "module",
"license": "MIT",
"description": "Lazy delay support debounce function",
"keywords": [
"lodash",
"debounce",
"lazy",
"delay",
"utils",
"function"
],
"author": "youngho.jeon",
"repository": {
"type": "git",
"url": "git+https://github.com/yhzion/simple-lazy-debounce.git"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "vite build --base=./ && rollup -c rollup.config.cjs",
"lint": "oxlint src index.ts -c oxlint.json && eslint src index.ts",
"lint:fix": "eslint --fix src index.ts",
"format": "prettier --write \"src/**/*.ts\" \"index.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"index.ts\"",
"test": "jest",
"test:e2e": "npm run build && playwright test",
"prepare": "husky"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.23.3",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@playwright/test": "^1.57.0",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.4",
"@typescript-eslint/eslint-plugin": "^8.48.0",
"@typescript-eslint/parser": "^8.48.0",
"babel-jest": "^29.7.0",
"eslint": "^9.39.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^16.2.7",
"oxlint": "^1.30.0",
"prettier": "^3.7.1",
"rollup-plugin-dts": "^6.1.1",
"ts-jest": "^29.2.5",
"typescript": "^5.5.4",
"vite": "^5.4.3",
"vite-plugin-eslint": "^1.8.1"
}
}