-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 897 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
{
"name": "mobx-injected-component",
"version": "0.0.1",
"description": "A component that can be used to type your mobx injected component with TypeScript",
"main": "InjectedComponent.js",
"types": "InjectedComponent.d.ts",
"scripts": {
"build": "node_modules/typescript/bin/tsc -p ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/RalfNieuwenhuizen/mobx-injected-component.git"
},
"keywords": [
"react",
"react-native",
"mobx",
"injected",
"typescript"
],
"author": "RalfNieuwenhuizen",
"license": "MIT",
"bugs": {
"url": "https://github.com/RalfNieuwenhuizen/mobx-injected-component/issues"
},
"homepage": "https://github.com/RalfNieuwenhuizen/mobx-injected-component#readme",
"readmeFilename": "README.md",
"devDependencies": {
"@types/react": "*",
"react": "*",
"typescript": "^3.4.3"
}
}