-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.09 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
{
"name": "react-stable-state",
"version": "0.0.13",
"description": "react-stable-state",
"scripts": {
"build": "rollup -c",
"test": "jest",
"coverage": "jest --coverage"
},
"homepage": "https://github.com/tomtsutom/react-stable-state",
"module": "dist/es6/index.js",
"main": "dist/commonjs/index.js",
"files": [
"dist",
"src",
"README.md"
],
"keywords": [
"react",
"react-hooks",
"useState"
],
"author": "tomtsutom",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-typescript": "^8.3.1",
"@testing-library/react-hooks": "^7.0.2",
"@types/jest": "^27.4.1",
"@types/react": "^18.0.0",
"can-npm-publish": "^1.3.6",
"jest": "^27.5.1",
"react": "^18.0.0",
"react-test-renderer": "^18.0.0",
"rollup": "^2.70.1",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"dependencies": {
"tslib": "^2.3.1"
}
}