-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 821 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
34
35
36
37
{
"name": "react-native-expandable-fab",
"version": "1.1.2",
"description": "A simple package containing a configurable and expandable FAB component",
"keywords": [
"react-native",
"expo",
"fab",
"expandable"
],
"license": "MIT",
"author": "Chrrapek",
"repository": {
"type": "git",
"url": "https://github.com/Chrrapek/react-native-expandable-fab.git"
},
"devDependencies": {
"@types/react": "^17.0.3",
"@types/react-native": "^0.63.51",
"react-native-unimodules": "^0.12.0",
"typescript": "^4.2.3"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"scripts": {
"build": "tsc",
"prepare": "yarn run build"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"dependencies": {}
}