-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 969 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": "redext",
"version": "0.0.17",
"description": "A simple global store based on React Context and Hooks",
"main": "./dist/index.js",
"module": "./dist/esm/index.mjs",
"exports": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.mjs"
},
"scripts": {
"build": "rollup -c"
},
"keywords": [
"react",
"react-context",
"react-hooks"
],
"repository": {
"type": "git",
"url": "https://github.com/toiladoong/redext.git"
},
"homepage": "https://github.com/toiladoong/redext",
"dependencies": {
"@rollup/plugin-strip": "^2.0.0",
"rollup-plugin-local-resolve": "^1.0.7",
"rollup-plugin-terser": "^7.0.2"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"rollup": "^2.32.1",
"rollup-plugin-babel": "^4.4.0",
"typescript": "^4.2.4"
}
}