-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.14 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.14 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "synced-storage",
"version": "1.3.2",
"description": "A small, framework‑agnostic utility for syncing cookies, localStorage, and sessionStorage with application state.",
"keywords": [
"cookies",
"localStorage",
"sessionStorage",
"sync",
"react",
"next.js",
"state-management",
"cross-tab",
"cross-tab-sync",
"ssr",
"ssr-hydration",
"hooks",
"react-hooks",
"storage",
"web-storage",
"typescript",
"framework-agnostic"
],
"author": "jeheecheon",
"license": "MIT",
"packageManager": "pnpm@10.18.3",
"homepage": "https://github.com/jeheecheon/synced-storage#readme",
"repository": {
"type": "git",
"url": "https://github.com/jeheecheon/synced-storage.git"
},
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"test": "vitest",
"clean": "rm -rf dist",
"package:publish": "pnpm build && pnpm publish --access public --no-git-checks",
"dev:nextjs": "pnpm build && pnpm --filter example-nextjs dev"
},
"main": "dist/core/index.js",
"module": "dist/core/index.mjs",
"types": "dist/core/index.d.ts",
"exports": {
".": {
"types": "./dist/core/index.d.ts",
"import": "./dist/core/index.mjs",
"require": "./dist/core/index.js"
},
"./core": {
"types": "./dist/core/index.d.ts",
"import": "./dist/core/index.mjs",
"require": "./dist/core/index.js"
},
"./react": {
"types": "./dist/react/index.d.ts",
"import": "./dist/react/index.mjs",
"require": "./dist/react/index.js"
}
},
"files": ["dist", "README.md"],
"sideEffects": false,
"dependencies": {
"universal-cookie": "^8.0.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^24.10.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"jsdom": "^28.0.0",
"react": "^19.2.0",
"react-dom": "19.2.0",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
}
}
}