-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.32 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
{
"name": "tab-syncer",
"version": "1.0.7",
"description": "A lightweight (4KB) library for browser tab state synchronization and communication. Supports auto-persistence and real-time data sync between tabs.",
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"test:e2e": "pnpm run example & playwright test",
"test:e2e:ui": "pnpm run example & playwright test --ui",
"example": "node example/server.mjs"
},
"keywords": [
"tab",
"tab sync",
"tabsyncer",
"tab-syncer",
"browser-tabs",
"tab-communication",
"state-sync",
"cross-tab",
"broadcastchannel",
"localstorage",
"persistence",
"real-time"
],
"files": [
"dist"
],
"author": "telephant11@gmail.com",
"devDependencies": {
"@playwright/test": "^1.50.1",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-typescript": "^12.1.2",
"@types/events": "^3.0.3",
"@types/node": "^22.13.2",
"express": "^4.21.2",
"rollup": "^4.34.6",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.8.1",
"typescript": "^5.7.3"
},
"repository": {
"type": "git",
"url": "https://github.com/telephant/tab-sync.git"
},
"license": "MIT"
}