-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.1 KB
/
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
43
44
45
46
47
48
49
50
51
{
"name": "@gtgalone/react-store",
"version": "1.0.7",
"description": "React Hook Store with useContext and useReducer",
"license": "MIT",
"repository": "gtgalone/react-store",
"author": {
"name": "Jehun Seem",
"email": "[email protected]",
"url": "https://github.com/gtgalone"
},
"scripts": {
"build:cjs": "tsc",
"build:esm": "tsc -m esNext --outDir esm",
"build": "yarn build:cjs && yarn build:esm"
},
"main": "lib/index.js",
"module": "esm/index.js",
"types": "lib/index.d.ts",
"typings": "lib/index.d.ts",
"files": [
"lib",
"esm"
],
"keywords": [
"@gtgalone/react-store",
"react-store",
"react-usestore",
"react-use-store",
"react-hook-store",
"react-hooks-store",
"use-store",
"hook-store",
"hooks-store",
"use-context",
"use-reducer"
],
"peerDependencies": {
"react": "^16.8.0 || ^17.0.2"
},
"devDependencies": {
"@types/node": "15.12.2",
"@types/react": "^17.0.11",
"tslint": "6.1.3",
"tslint-config-prettier": "1.18.0",
"tslint-eslint-rules": "5.4.0",
"tslint-plugin-prettier": "2.3.0",
"tslint-react": "5.0.0",
"typescript": "4.3.2"
}
}