-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.13 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.13 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
45
46
47
48
49
{
"name": "idle-session",
"version": "1.2.3",
"description": "Seamless, multi-tab session orchestration for the modern web.",
"keywords": [
"idle",
"session",
"timeout",
"heartbeat",
"broadcast-channel",
"multi-tab"
],
"author": "Todd Horst",
"license": "MIT",
"homepage": "https://github.com/thorst/idle-session",
"repository": {
"type": "git",
"url": "https://github.com/thorst/idle-session.git"
},
"bugs": {
"url": "https://github.com/thorst/idle-session/issues"
},
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"test": "playwright test",
"coverage": "cross-env VITE_COVERAGE=true playwright test && nyc report && node scripts/inject-coverage-nav.mjs"
},
"devDependencies": {
"@playwright/test": "^1.50.0",
"cross-env": "^10.1.0",
"nyc": "^17.0.0",
"vite": "^6.0.0",
"vite-plugin-istanbul": "^6.0.0"
},
"types": "./IdleSession.d.ts",
"exports": {
".": {
"import": "./IdleSession.js",
"default": "./IdleSession.js"
}
},
"files": [
"IdleSession.js",
"IdleSession.d.ts",
"dist/"
]
}