-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 947 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
{
"name": "react-store-maker",
"version": "1.0.5",
"description": "A simple utility function to create stores with context api in react",
"main": "dist/index.js",
"repository": "https://github.com/adiathasan/react-store-maker",
"homepage": "https://github.com/adiathasan/react-store-maker",
"bugs": "https://github.com/adiathasan/react-store-maker",
"author": "Adiat Hasan <[email protected]>",
"license": "MIT",
"scripts": {
"build": "rollup -c",
"start": "rollup -c -w"
},
"peerDependencies": {
"react": ">=^16.8.0"
},
"keywords": [
"react",
"es6",
"store",
"dispatch",
"react-context",
"react-hooks"
],
"devDependencies": {
"@types/react": "^17.0.34",
"babel-core": "^6.26.3",
"babel-runtime": "^6.26.0",
"react": "^17.0.2",
"rollup": "^2.60.0",
"rollup-plugin-typescript2": "^0.30.0",
"typescript": "^4.4.4"
},
"files": [
"dist"
]
}