forked from SupremeTechnopriest/react-idle-timer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.09 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "react-idle-timer",
"version": "5.7.2",
"description": "Activity detection for React.js",
"main": "./dist/index.cjs.js",
"module": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs.js",
"import": "./dist/index.esm.js"
},
"./legacy": {
"types": "./dist/index.d.ts",
"require": "./dist/index.legacy.cjs.js",
"import": "./dist/index.legacy.esm.js"
}
},
"scripts": {
"start": "nps",
"test": "jest",
"build": "scripts/build.js && tsc --project ./tsconfig.build.json"
},
"keywords": [
"react",
"idle",
"idle timer",
"timer",
"activity",
"active",
"timeout",
"session",
"session expiration",
"session timeout"
],
"author": "Randy Lebeau <randylebeau@gmail.com> (https://github.com/supremetechnopriest)",
"license": "MIT",
"homepage": "https://idletimer.dev",
"repository": {
"type": "git",
"url": "https://github.com/supremetechnopriest/react-idle-timer.git"
},
"bugs": "https://github.com/supremetechnopriest/react-idle-timer/issues/new/choose",
"peerDependencies": {
"react": ">=16",
"react-dom": ">=16"
},
"devDependencies": {
"@next/eslint-plugin-next": "^13.4.4",
"@swc/helpers": "^0.5.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.2",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"esbuild": "^0.17.19",
"esbuild-plugin-es5": "^2.0.1",
"eslint": "^8.42.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"fs-extra": "^11.1.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"nps-utils": "^1.7.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3",
"worker-timers": "^7.0.70"
}
}