-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.83 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
{
"name": "react-shared-states",
"version": "2.1.8",
"type": "module",
"description": "Global state made as simple as useState, with zero config, built-in async caching, and automatic scoping.",
"keywords": [
"react",
"shared-states",
"react-states",
"react-store",
"react-shared-store",
"react-package",
"react-library"
],
"main": "dist/main.min.js",
"module": "dist/main.esm.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/main.esm.js",
"require": "./dist/main.min.js"
}
},
"scripts": {
"tsc": "tsc",
"bump": "node scripts/bumper.js",
"build": "tsc && vite build",
"test": "vitest",
"preview": "vite preview",
"dev:demo": "vite --config demo/vite.config.demo.ts",
"build:demo": "vite build --config demo/vite.config.demo.ts"
},
"author": "Hichem Taboukouyout <hichem.taboukouyout@hichemtab-tech.me>",
"repository": {
"type": "git",
"url": "git+https://github.com/HichemTab-tech/react-shared-states.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/HichemTab-tech/react-shared-states/issues"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"homepage": "https://github.com/HichemTab-tech/react-shared-states#readme",
"devDependencies": {
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.1",
"@types/node": "^25.0.3",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"jsdom": "^29.0.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"typescript": "^5.9.3",
"vite": "8.0.0",
"vite-plugin-banner": "^0.8.1",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.0.16"
},
"dependencies": {
"react-fast-compare": "^3.2.2"
}
}