-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
86 lines (86 loc) · 2.21 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "expo-share-intent",
"version": "3.2.0",
"description": "use native share intent for ios and android with expo",
"homepage": "https://github.com/achorein/expo-share-intent/",
"repository": {
"type": "git",
"url": "git+https://github.com/achorein/expo-share-intent.git"
},
"author": "achorein (https://github.com/achorein)",
"license": "MIT",
"bugs": {
"url": "https://github.com/achorein/expo-share-intent/issues"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/achorein"
},
"https://www.buymeacoffee.com/achorein"
],
"keywords": [
"react-native",
"expo",
"expo-share-extension",
"react-native-share-extension",
"react-native-share-intent",
"expo-config-plugin",
"share-share-intent",
"share-intent"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"app.plugin.js",
"plugin/build",
"build",
"expo-module.config.json",
"ios",
"android",
"!android/build/"
],
"scripts": {
"release": "dotenv release-it",
"build": "expo-module build",
"build:plugin": "expo-module build plugin",
"postbuild": "cp plugin/src/ios/*.swift plugin/build/ios",
"clean": "expo-module clean",
"lint": "expo-module lint",
"test": "expo-module test",
"prepare": "expo-module prepare && yarn postbuild",
"prepublishOnly": "expo-module prepublishOnly",
"expo-module": "expo-module"
},
"dependencies": {
"@expo/config-plugins": "^9.0.9",
"expo-constants": "^17.0.2",
"expo-linking": "~7.0.2"
},
"resolutions": {
"string-width": "^4",
"strip-ansi": "^4",
"wrap-ansi": "^7"
},
"peerDependencies": {
"expo": "^52",
"expo-constants": ">=17.0.2",
"expo-linking": ">=7.0.2",
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@release-it/conventional-changelog": "^9.0.0",
"@types/react": "~18.3.12",
"@types/react-native": "^0.73.0",
"dotenv-cli": "^7.4.2",
"eslint": "^8.57.1",
"expo-module-scripts": "^4.0.2",
"expo-modules-core": "^2.0.1",
"prettier": "^3.2.5",
"release-it": "^17.10.0"
}
}