-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
53 lines (53 loc) · 1.28 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
{
"name": "idle-js",
"version": "2.0.0-beta.3",
"description": "Detect user idleness. In other words, play with activity state.",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"files": [
"/dist"
],
"repository": {
"type": "git",
"url": "https://github.com/soixantecircuits/idle-js"
},
"browserslist": [
"defaults",
"not IE 11"
],
"devDependencies": {
"eslint": "^8.6.0",
"eslint-plugin-compat": "^4.0.0",
"vite": "^2.7.2"
},
"keywords": [
"idle",
"events",
"interactivity",
"timeout",
"activity",
"user state"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/soixantecircuits/idle-js/issues"
},
"author": "hugohil <hilairehugo@gmail.com>",
"contributors": [
"massambadiouf <mass@soixantecircuits.fr> (https://github.com/massambadiouf)",
"gabrielstuff <gabriel@soixantecircuits.fr> (http://twitter.com/gabrielstuff)",
"hugohil <hugo@soixantecircuits.fr> (https://github.com/hugohil)",
"Martin Hradil <mhradil@redhat.com> (https://github.com/himdel)"
],
"exports": {
".": {
"import": "./dist/idle-js.es.js",
"require": "./dist/idle-js.umd.js"
}
},
"main": "./dist/idle-js.umd.js",
"module": "./dist/idle-js.es.js"
}