-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 944 Bytes
/
package.json
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
{
"name": "usesync",
"version": "2.0.2",
"description": "A subscription based state management solution for React!",
"main": "./dist/useSync.js",
"module": "./dist/useSync.mjs",
"types": "./src/useSync.d.ts",
"exports": {
".": {
"require": "./dist/useSync.js",
"import": "./dist/useSync.mjs",
"types": "./src/useSync.d.ts"
}
},
"scripts": {
"build": "tsup src/useSync.js --format cjs,esm --minify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iMrDJAi/useSync.git"
},
"keywords": [
"react",
"hooks",
"state",
"react-hook",
"react-state",
"usesync"
],
"author": "iMrDJAi",
"license": "MIT",
"bugs": {
"url": "https://github.com/iMrDJAi/useSync/issues"
},
"homepage": "https://github.com/iMrDJAi/useSync#readme",
"peerDependencies": {
"react": ">= 16.8.0"
},
"devDependencies": {
"tsup": "^6.0.1"
}
}