-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1017 Bytes
/
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
{
"name": "@sysix/broadcast-single-worker",
"description": "Create a single worker for multiple browser tabs",
"module": "dist/index.js",
"browser": "dist/index.js",
"types": "types/index.d.ts",
"type": "module",
"keywords": [
"broadcast",
"browser",
"worker"
],
"repository": {
"type": "git",
"url": "https://github.com/Sysix/broadcast-single-worker.git"
},
"exports": {
"./package.json": "./package.json",
".": {
"types": "./types/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"sideEffects": false,
"files": [
"dist",
"types"
],
"scripts": {
"build": "tsc --project ./tsconfig.json",
"test": "jest ./src --config=jest.config.js"
},
"license": "MIT",
"dependencies": {
"eventemitter3": "^5.0.1"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.1.4",
"typescript": "^5.4.5"
}
}