-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.98 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.98 KB
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
{
"name": "expo-quick-actions",
"version": "6.0.1",
"description": "use native quick actions and custom app icons",
"exports": {
".": {
"types": "./build/index.d.ts",
"react-native": "./build/index.js",
"default": "./build/index.web.js"
},
"./hooks": {
"types": "./build/hooks.d.ts",
"default": "./build/hooks.js"
},
"./router": {
"types": "./build/router.d.ts",
"default": "./build/router.js"
},
"./icon": {
"types": "./build/icon.d.ts",
"default": "./build/icon.js"
},
"./expo-module.config.json": "./expo-module.config.json",
"./icon/plugin": "./plugin/build/withAppIcon.js",
"./app.plugin": "./app.plugin.js",
"./app.plugin.js": "./app.plugin.js",
"./package.json": "./package.json"
},
"scripts": {
"build": "expo-module build",
"clean": "expo-module clean",
"lint": "expo-module lint",
"test": "expo-module test",
"prepare": "expo-module prepare",
"prepublishOnly": "expo-module prepublishOnly",
"expo-module": "expo-module"
},
"files": [
"build",
"plugin/build",
"app.plugin.js",
"expo-module.config.json",
"ios",
"android",
"!android/build/"
],
"keywords": [
"react-native",
"expo",
"expo-quick-actions",
"ExpoQuickActions",
"app-icon",
"dynamic-app-icon"
],
"repository": {
"type": "git",
"url": "https://github.com/evanbacon/expo-quick-actions.git"
},
"bugs": {
"url": "https://github.com/evanbacon/expo-quick-actions/issues"
},
"author": "Evan Bacon",
"license": "MIT",
"homepage": "https://github.com/evanbacon/expo-quick-actions/",
"dependencies": {
"@expo/image-utils": "^0.8.7",
"schema-utils": "^4.3.2",
"sf-symbols-typescript": "^2.1.0"
},
"devDependencies": {
"expo-module-scripts": "^5.0.7",
"expo-modules-core": "^3.0.15",
"expo-router": "^6",
"react": "^19.1.0",
"@types/react": "~19.1.0"
},
"peerDependencies": {
"expo": "*"
}
}