-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.48 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
54
55
56
57
58
59
{
"name": "broadcaster-monorepo",
"description": "Cross window state manager based on BroadcastChannel API. Allows to send messages and keep states between browsing contexts (tabs, windows, workers, etc..)",
"author": "Pavel Stencl",
"private": true,
"scripts": {
"build": "lerna run build",
"lint": "lerna run lint",
"test": "lerna run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pavelstencl/broadcasterJS.git"
},
"keywords": [
"broadcast",
"channel",
"BroadcastChannel",
"share",
"state",
"tabs",
"windows",
"browser",
"workers",
"connect",
"connection",
"cross"
],
"license": "MIT",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.5",
"@types/jest": "^29.5.6",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint-plugin-typescript-sort-keys": "^3.1.0",
"jest-environment-jsdom": "^29.7.0",
"lerna": "^7.4.2",
"lerna-changelog": "^2.2.0",
"rimraf": "^5.0.5",
"rollup": "^4.4.1",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"changelog": {
"labels": {
"feat": "New Feature",
"fix": "Bug Fix",
"refactor": "Change"
}
}
}