1 | {
|
2 | "name": "@expo/react-native-action-sheet",
|
3 | "version": "4.1.0",
|
4 | "description": "A cross-platform ActionSheet for React Native",
|
5 | "react-native": "lib/module/index.js",
|
6 | "types": "lib/typescript/index.d.ts",
|
7 | "main": "lib/commonjs/index.js",
|
8 | "module": "lib/module/index.js",
|
9 | "files": [
|
10 | "lib"
|
11 | ],
|
12 | "scripts": {
|
13 | "prepare": "bob build",
|
14 | "build": "bob build",
|
15 | "type-check": "tsc --noEmit",
|
16 | "lint": "eslint . --fix",
|
17 | "lint-check": "eslint",
|
18 | "semantic-release": "semantic-release"
|
19 | },
|
20 | "repository": {
|
21 | "type": "git",
|
22 | "url": "https://github.com/expo/react-native-action-sheet.git"
|
23 | },
|
24 | "keywords": [
|
25 | "expo",
|
26 | "react-native",
|
27 | "action-sheet"
|
28 | ],
|
29 | "author": "Jesse Ruder <jesse@sixfivezero.net>",
|
30 | "license": "MIT",
|
31 | "bugs": {
|
32 | "url": "https://github.com/expo/react-native-action-sheet/issues"
|
33 | },
|
34 | "homepage": "https://github.com/expo/react-native-action-sheet",
|
35 | "devDependencies": {
|
36 | "@react-native-community/bob": "^0.6.1",
|
37 | "@semantic-release/changelog": "^5.0.1",
|
38 | "@semantic-release/git": "^9.0.0",
|
39 | "@types/react": "^16.8.23",
|
40 | "@types/react-native": "^0.57.65",
|
41 | "eslint": "^7.32.0",
|
42 | "eslint-config-universe": "^8.0.0",
|
43 | "husky": "^3.0.0",
|
44 | "lint-staged": "^9.2.0",
|
45 | "prettier": "^2.3.2",
|
46 | "react": "18.0.0",
|
47 | "react-dom": "18.0.0",
|
48 | "react-native": "0.69.9",
|
49 | "typescript": "^3.5.3"
|
50 | },
|
51 | "peerDependencies": {
|
52 | "react": ">=18.0.0"
|
53 | },
|
54 | "@react-native-community/bob": {
|
55 | "source": "src",
|
56 | "output": "lib",
|
57 | "targets": [
|
58 | "commonjs",
|
59 | "module",
|
60 | "typescript"
|
61 | ]
|
62 | },
|
63 | "husky": {
|
64 | "hooks": {
|
65 | "pre-commit": "lint-staged"
|
66 | }
|
67 | },
|
68 | "lint-staged": {
|
69 | "*.{js,ts,tsx}": [
|
70 | "yarn lint",
|
71 | "git add"
|
72 | ]
|
73 | },
|
74 | "dependencies": {
|
75 | "@types/hoist-non-react-statics": "^3.3.1",
|
76 | "hoist-non-react-statics": "^3.3.0"
|
77 | }
|
78 | }
|