-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.79 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "mobx-react-use-autorun",
"version": "4.0.51",
"description": "Provide concise usage for mobx in react",
"scripts": {
"test": "node bin/mobx_react_test.js",
"build": "node bin/mobx_react_build.js",
"make": "node bin/mobx_react_make.js"
},
"dependencies": {
"mobx": "6.13.5",
"mobx-react-lite": "4.1.0",
"rxjs": "7.8.1"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "7.21.11",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.1.0",
"@testing-library/user-event": "14.5.2",
"@types/jest": "29.5.14",
"@types/node": "22.10.2",
"@types/react": "19.0.2",
"@types/react-dom": "19.0.2",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-scripts": "5.0.1",
"typescript": "4.9.5"
},
"license": "MIT",
"keywords": [
"react",
"mobx",
"typescript",
"hooks"
],
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"es2015": "./dist/esm/index.js",
"types": "./dist/cjs/index.d.ts",
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"exports": {
".": {
"types": "./dist/cjs/index.d.ts",
"node": "./dist/cjs/index.js",
"require": "./dist/cjs/index.js",
"es2015": "./dist/esm/index.js",
"default": "./dist/esm/index.js"
}
},
"homepage": "https://github.com/zdu-strong/mobx-react-use-autorun#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/zdu-strong/mobx-react-use-autorun.git"
},
"files": [
"lib",
"dist"
],
"bugs": {
"url": "https://github.com/zdu-strong/mobx-react-use-autorun/issues"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}