-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.47 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.47 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
50
51
52
53
54
{
"name": "tabstatesync",
"version": "0.1.3",
"description": "Lightweight library for synchronizing state across browser tabs using BroadcastChannel or localStorage fallback.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "vitest run src/__tests__",
"build:bundle": "esbuild src/index.ts --bundle --format=esm --outfile=examples/tabstatesync.bundle.js",
"serve:e2e": "http-server -p 8080 -c-1 .",
"test:e2e": "playwright test",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/robertluiz/TabStateSync.git"
},
"keywords": [
"state",
"sync",
"browser",
"tabs",
"typescript",
"react"
],
"author": "Robert Luiz",
"license": "MIT",
"devDependencies": {
"@playwright/test": "^1.52.0",
"@testing-library/react": "^16.3.0",
"@types/jest": "^29.5.14",
"@types/jsdom": "^21.1.7",
"@types/react": "^19.1.4",
"@types/react-dom": "^19.0.0",
"esbuild": "^0.25.4",
"jsdom": "^26.1.0",
"playwright": "^1.52.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-test-renderer": "^19.1.0",
"standard-version": "^9.5.0",
"typescript": "^5.8.3",
"vitest": "^3.1.4"
},
"directories": {
"example": "examples",
"test": "tests"
},
"bugs": {
"url": "https://github.com/robertluiz/TabStateSync/issues"
},
"homepage": "https://github.com/robertluiz/TabStateSync#readme"
}