-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
52 lines (52 loc) · 1.42 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
{
"name": "react-native-widget-extension",
"version": "0.0.6",
"description": "Expo config plugin to add widgets and live activities to a React Native app",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"ios",
"plugin/build",
"build",
"README.md",
"expo-module.config.json",
"app.plugin.js"
],
"scripts": {
"ncu": "bun x npm-check-updates -p bun",
"build": "bun x tsc --build ./ ./plugin",
"dev": "bun x tsc --build ./ ./plugin --watch"
},
"keywords": [
"react-native",
"expo",
"react-native-widget-extension",
"ReactNativeWidgetExtension"
],
"repository": "https://github.com/bndkt/react-native-widget-extension",
"bugs": {
"url": "https://github.com/bndkt/react-native-widget-extension/issues"
},
"author": "Benedikt Müller <[email protected]> (https://github.com/bndkt)",
"license": "MIT",
"homepage": "https://github.com/bndkt/react-native-widget-extension#readme",
"dependencies": {
"@expo/config-plugins": "^7.2.5"
},
"devDependencies": {
"@types/node": "20.6.0",
"@types/react": "~18.2.21",
"@types/react-native": "0.72.2",
"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": "*"
}
}