1 | {
|
2 | "name": "@raddix/use-count-down",
|
3 | "description": "The useCountdown hook is useful for creating a very simple yet powerful countdown timer for React.",
|
4 | "version": "1.1.3",
|
5 | "license": "MIT",
|
6 | "main": "dist/index.js",
|
7 | "author": "Moises Machuca Valverde <rolan.machuca@gmail.com> (https://www.moisesmachuca.com)",
|
8 | "homepage": "https://raddix.dev",
|
9 | "repository": {
|
10 | "type": "git",
|
11 | "url": "https://github.com/gdvu/raddix.git"
|
12 | },
|
13 | "keywords": [
|
14 | "react-timer",
|
15 | "react-use-count-down",
|
16 | "react-count-down",
|
17 | "hook-count-down",
|
18 | "react-countdown-hook"
|
19 | ],
|
20 | "sideEffects": false,
|
21 | "files": [
|
22 | "dist",
|
23 | "README.md"
|
24 | ],
|
25 | "peerDependencies": {
|
26 | "react": ">=16.8.0",
|
27 | "react-dom": ">=16.8.0"
|
28 | },
|
29 | "clean-package": "../../../clean-package.config.json",
|
30 | "tsup": {
|
31 | "clean": true,
|
32 | "target": "es2019",
|
33 | "format": [
|
34 | "cjs",
|
35 | "esm"
|
36 | ]
|
37 | },
|
38 | "module": "dist/index.mjs",
|
39 | "types": "dist/index.d.ts",
|
40 | "exports": {
|
41 | ".": {
|
42 | "types": "./dist/index.d.ts",
|
43 | "import": "./dist/index.mjs",
|
44 | "require": "./dist/index.js"
|
45 | },
|
46 | "./package.json": "./package.json"
|
47 | },
|
48 | "scripts": {
|
49 | "lint": "eslint \"{src,tests}/*.{ts,tsx,css}\"",
|
50 | "clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
|
51 | "build": "tsup src --dts"
|
52 | }
|
53 | } |
\ | No newline at end of file |