react-atom-toast
Version:
Tiny & Headless toast for React
94 lines • 2.58 kB
JSON
{
"name": "react-atom-toast",
"version": "2.0.5",
"description": "Tiny & Headless toast for React",
"type": "module",
"keywords": [
"react-toast",
"react-hot-toast",
"react-toastify",
"react-tiny-toast",
"react-headless-toast",
"toast",
"headless-toast",
"tiny-toast"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hemengke1997/react-atom-toast.git"
},
"author": "hemengke <https://github.com/hemengke1997>",
"files": [
"dist"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"sideEffects": false,
"peerDependencies": {
"react": ">=17.0.0",
"react-dom": ">=17.0.0",
"react-transition-preset": ">=3.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@minko-fe/commitlint-config": "^2.1.2",
"@minko-fe/eslint-config": "^4.2.2",
"@minko-fe/prettier-config": "^2.2.5",
"@minko-fe/tsconfig": "^2.1.1",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^18.3.19",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/ui": "^3.0.9",
"bumpp": "^10.1.0",
"conventional-changelog-cli": "^5.0.0",
"cross-env": "^7.0.3",
"eslint": "^9.22.0",
"jsdom": "^26.0.0",
"lint-staged": "^15.5.0",
"npm-run-all": "^4.1.5",
"prettier-plugin-tailwindcss": "^0.6.11",
"simple-git-hooks": "^2.12.1",
"taze": "^19.0.2",
"tsup": "8.3.0",
"tsup-plugin-bundleless": "^1.2.1",
"typescript": "^5.8.2",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.9"
},
"simple-git-hooks": {
"commit-msg": "npm run commitlint",
"pre-commit": "npm run lint-staged"
},
"commitlint": {
"extends": [
"@minko-fe/commitlint-config"
]
},
"lint-staged": {
"*": "eslint --fix"
},
"prettier": "@minko-fe/prettier-config",
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"build:pages": "npm run build && cd playground && npm run build",
"test": "vitest",
"lint-staged": "tsc --noEmit && lint-staged",
"commitlint": "commitlint -e",
"lint": "tsc --noEmit && eslint . --fix",
"up": "taze -I -w -r",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"bump": "bumpp package.json -c --no-push -t --all -x \"npm run changelog\""
}
}