-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1 KB
/
package.json
File metadata and controls
40 lines (40 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
{
"name": "@eseath/user-idle-observer",
"description": "Tracks the user's activity status. Calls your listeners when considered the user is idle or wakes up.",
"version": "0.1.0",
"license": "MIT",
"keywords": [
"observer",
"idle",
"inactivity",
"activity",
"inactive",
"active",
"afk"
],
"scripts": {
"build": "rollup --config rollup.config.js",
"test": "jest"
},
"devDependencies": {
"@babel/core": "7.14.2",
"@babel/preset-env": "7.14.2",
"babel-jest": "26.6.3",
"jest": "26.6.3",
"rollup-plugin-terser": "7.0.2"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"files": [
"dist/"
],
"main": "./entry.js",
"module": "./dist/user-idle-observer.es.js",
"exports": {
".": {
"import": "./dist/user-idle-observer.es.js",
"require": "./dist/user-idle-observer.umd.js"
}
}
}