forked from EvanBacon/expo-quick-actions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.18 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.18 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
81
82
83
84
85
86
87
{
"name": "expo-quick-actions",
"version": "6.0.0",
"description": "use native quick actions and custom app icons",
"main": "build/index",
"types": "build/index.d.ts",
"exports": {
"./app.plugin": "./app.plugin.js",
"./app.plugin.js": "./app.plugin.js",
"./icon/plugin": "./plugin/build/withAppIcon.js",
"./icon": {
"types": "./build/icon.d.ts",
"default": "./build/icon.js"
},
"./hooks": {
"types": "./build/hooks.d.ts",
"default": "./build/hooks.js"
},
"./router": {
"types": "./build/router.d.ts",
"default": "./build/router.js"
},
"./package.json": "./package.json",
".": {
"types": "./build/index.d.ts",
"react-native": "./build/index.js",
"default": "./build/index.web.js"
}
},
"scripts": {
"build": "expo-module build",
"build:plugin": "tsc -p plugin/tsconfig.json",
"build:src": "tsc",
"build:tsc": "npm run build:plugin && npm run build:src",
"build:watch": "tsc -p plugin/tsconfig.json --watch & tsc --watch",
"clean": "expo-module clean",
"lint": "expo-module lint",
"test": "expo-module test",
"prepublishOnly": "expo-module prepublishOnly",
"expo-module": "expo-module"
},
"files": [
"app.plugin.js",
"plugin/build",
"build",
"hooks",
"icon",
"router",
"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": "*"
}
}