-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
63 lines (63 loc) · 1.62 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
{
"name": "react-native-safari-extension",
"version": "1.1.0",
"description": "Config plugin to add a Safari Extension to your React Native iOS app",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build",
"plugin/build",
"app.plugin.js",
"README.md"
],
"scripts": {
"build": "expo-module build",
"build:plugin": "npx tsc --build ./plugin",
"build:src": "npx tsc --build ./",
"build:all": "npm run build:plugin && npm run build:src",
"clean": "expo-module clean",
"expo-module": "expo-module"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andrew-levy/react-native-safari-extension.git"
},
"author": {
"name": "Andrew Levy",
"url": "https://github.com/andrew-levy"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/andrew-levy/react-native-safari-extension/issues"
},
"homepage": "https://github.com/andrew-levy/react-native-safari-extension#readme",
"keywords": [
"react-native",
"expo",
"safari-extension",
"expo-config-plugin"
],
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/node": "^17.0.42",
"@types/react": "~18.2.21",
"@types/react-native": "0.72.2",
"copyfiles": "^2.4.1",
"expo-module-scripts": "^3.1.0",
"expo-modules-core": "^1.5.11",
"prettier": "^3.0.3",
"react": "18.2.0",
"react-native": "0.72.4",
"typescript": "^5.2.2"
},
"peerDependencies": {
"expo": "*",
"react": "*",
"react-native": "*"
},
"sideEffects": false,
"dependencies": {
"@expo/config-plugins": "^6.0.1",
"xcode": "^3.0.1"
}
}