-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.14 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
{
"name": "visibility-listener",
"version": "1.0.0",
"description": "Track document visibility state seamlessly across browsers",
"keywords": [
"document",
"visibility",
"document-visibility",
"cross-browser",
"state-tracking"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup",
"lint": "tsc",
"release": "pnpm run build && changeset publish",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watchAll"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@types/jest": "^29.5.1",
"@types/node": "^18.16.2",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jsdom": "^22.0.0",
"ts-jest": "^29.1.0",
"tsup": "^6.7.0",
"typescript": "^4.5.4"
},
"license": "MIT",
"author": "Ademílson F. Tonato - @ftonato",
"homepage": "https://github.com/ftonato/visibility-listener#readme",
"bugs": {
"url": "https://github.com/ftonato/visibility-listener/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/ftonato/visibility-listener.git"
}
}