-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "react-countdown-clock",
"version": "3.0.0",
"description": "HTML5 canvas countdown clock React component",
"main": "build/index.js",
"module": "build/index.esm.js",
"scripts": {
"build": "node build.mjs",
"test": "vitest run",
"lint": "biome check src/"
},
"repository": {
"type": "git",
"url": "https://github.com/pughpugh/react-countdown-clock"
},
"keywords": [
"react-component",
"react",
"countdown",
"timer",
"canvas"
],
"author": "Hugh Gallagher <hugh@hcgallagher.co.uk> (http://www.hughgallagher.co.uk/)",
"license": "ISC",
"bugs": {
"url": "https://github.com/pughpugh/react-countdown-clock/issues"
},
"homepage": "https://www.hughgallagher.co.uk",
"devDependencies": {
"@biomejs/biome": "2.5.11",
"@testing-library/react": "^16.3.3",
"esbuild": "^0.28.2",
"happy-dom": "^20.13.2",
"react": "^19.2.8",
"vitest": "^4.1.11"
},
"peerDependencies": {
"react": "^18.2.0 || ^19.0.0"
},
"dependencies": {
"prop-types": "^15.8.1",
"serve": "^14.2.6"
}
}