-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.06 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.06 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
{
"name": "react-global-signals",
"author": {
"name": "Rail Batyrshin",
"url": "https://github.com/tangopj",
"email": "rail.batyrshin.js@gmail.com"
},
"version": "0.1.5",
"type": "module",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/TangoPJ/react-global-state.git"
},
"homepage": "https://github.com/TangoPJ/react-global-state.git",
"files": [
"dist"
],
"main": "dist/index.js",
"private": false,
"scripts": {
"dev": "vite",
"build": "tsc",
"preview": "vite preview",
"prepublishOnly": "rm -rf ./dist && npm run build"
},
"devDependencies": {
"@types/node": "^22.15.17",
"@types/react-dom": "^19.1.3",
"@vitejs/plugin-react": "^4.4.1",
"typescript": "~5.8.3",
"vite": "^6.3.5",
"vite-plugin-dts": "^3.6.3"
},
"dependencies": {
"@preact/signals-react": "^3.0.1"
},
"peerDependencies": {
"react": "^16.14.0 || 17.x || 18.x || 19.x",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
}
}