-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.12 KB
/
package.json
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
{
"name": "@minax/countdown",
"version": "2.0.0",
"description": "A countdown component and hooks for React.",
"main": "lib/index.js",
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/minaxorg/countdown.git"
},
"keywords": [
"react-countdown",
"countdown"
],
"author": "hellohejinyu",
"license": "ISC",
"bugs": {
"url": "https://github.com/minaxorg/countdown/issues"
},
"homepage": "https://github.com/minaxorg/countdown#readme",
"peerDependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"@types/react": "^18.3.12",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"eslint": "^8.57.1",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-react": "^7.37.2",
"react": "^18.3.1",
"typescript": "*"
}
}