UNPKG

2.1 kBJSONView Raw
1{
2 "name": "mobx-react",
3 "version": "9.1.1",
4 "description": "React bindings for MobX. Create fully reactive components.",
5 "source": "src/index.ts",
6 "main": "dist/index.js",
7 "umd:main": "dist/mobxreact.umd.production.min.js",
8 "unpkg": "dist/mobxreact.umd.production.min.js",
9 "jsdelivr": "dist/mobxreact.umd.production.min.js",
10 "jsnext:main": "dist/mobxreact.esm.js",
11 "module": "dist/mobxreact.esm.js",
12 "react-native": "dist/mobxreact.esm.js",
13 "types": "dist/index.d.ts",
14 "typings": "dist/index.d.ts",
15 "files": [
16 "src",
17 "dist",
18 "LICENSE",
19 "CHANGELOG.md",
20 "README.md",
21 "batching*"
22 ],
23 "sideEffects": false,
24 "repository": {
25 "type": "git",
26 "url": "https://github.com/mobxjs/mobx.git"
27 },
28 "author": "Michel Weststrate",
29 "license": "MIT",
30 "funding": {
31 "type": "opencollective",
32 "url": "https://opencollective.com/mobx"
33 },
34 "bugs": {
35 "url": "https://github.com/mobxjs/mobx/issues"
36 },
37 "homepage": "https://mobx.js.org",
38 "dependencies": {
39 "mobx-react-lite": "^4.0.7"
40 },
41 "peerDependencies": {
42 "mobx": "^6.9.0",
43 "react": "^16.8.0 || ^17 || ^18"
44 },
45 "peerDependenciesMeta": {
46 "react-dom": {
47 "optional": true
48 },
49 "react-native": {
50 "optional": true
51 }
52 },
53 "devDependencies": {
54 "mobx": "^6.12.2",
55 "mobx-react-lite": "^4.0.7",
56 "expose-gc": "^1.0.0"
57 },
58 "keywords": [
59 "mobx",
60 "mobservable",
61 "react-component",
62 "react",
63 "reactjs",
64 "reactive"
65 ],
66 "scripts": {
67 "lint": "eslint src/**/* --ext .js,.ts,.tsx",
68 "build": "node ../../scripts/build.js mobxReact",
69 "build:test": "yarn build --target test",
70 "test": "jest",
71 "test:size": "yarn import-size --report . observer",
72 "test:types": "tsc --noEmit",
73 "test:check": "yarn test:types",
74 "prepublishOnly": "yarn build --target publish"
75 }
76}