UNPKG

2.06 kBJSONView Raw
1{
2 "name": "mobx-react",
3 "version": "7.2.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": "^3.2.0"
40 },
41 "peerDependencies": {
42 "mobx": "^6.1.0",
43 "react": "^16.8.0 || ^17"
44 },
45 "peerDependenciesMeta": {
46 "react-dom": {
47 "optional": true
48 },
49 "react-native": {
50 "optional": true
51 }
52 },
53 "devDependencies": {
54 "mobx": "^6.3.4",
55 "mobx-react-lite": "^4.0.0"
56 },
57 "keywords": [
58 "mobx",
59 "mobservable",
60 "react-component",
61 "react",
62 "reactjs",
63 "reactive"
64 ],
65 "scripts": {
66 "lint": "eslint src/**/* --ext .js,.ts,.tsx",
67 "build": "node ../../scripts/build.js mobxReact",
68 "build:test": "yarn build --target test",
69 "test": "jest",
70 "test:size": "yarn import-size --report . observer",
71 "test:types": "tsc --noEmit",
72 "test:check": "yarn test:types",
73 "prepublish": "yarn build --target publish"
74 }
75}