uri-scheme 2.0.22 → 2.0.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/index.js +4 -4
- package/package.json +18 -16
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "uri-scheme",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.23",
|
|
4
4
|
"description": "Interact with native URI schemes",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"keywords": [
|
|
@@ -25,26 +25,28 @@
|
|
|
25
25
|
"build",
|
|
26
26
|
"cli.js"
|
|
27
27
|
],
|
|
28
|
+
"scripts": {
|
|
29
|
+
"build": "ncc build ./src/index.ts -o build/",
|
|
30
|
+
"build:prod": "ncc build ./src/index.ts -o build/ --minify --no-cache --no-source-map-register",
|
|
31
|
+
"clean": "expo-module clean",
|
|
32
|
+
"lint": "expo-module lint",
|
|
33
|
+
"prepare": "yarn run clean && yarn run build:prod",
|
|
34
|
+
"test": "expo-module test",
|
|
35
|
+
"typecheck": "expo-module typecheck",
|
|
36
|
+
"watch": "yarn run build --watch",
|
|
37
|
+
"prepublishOnly": "expo-module prepublishOnly"
|
|
38
|
+
},
|
|
28
39
|
"devDependencies": {
|
|
40
|
+
"@expo/config-plugins": "~55.0.9",
|
|
41
|
+
"@expo/plist": "^0.5.3",
|
|
29
42
|
"@expo/spawn-async": "^1.7.2",
|
|
30
43
|
"@types/prompts": "^2.0.6",
|
|
31
44
|
"chalk": "^4.0.0",
|
|
32
45
|
"commander": "^12.1.0",
|
|
46
|
+
"expo-module-scripts": "^55.0.2",
|
|
33
47
|
"glob": "^13.0.0",
|
|
34
48
|
"prompts": "^2.3.2",
|
|
35
|
-
"update-check": "^1.5.4"
|
|
36
|
-
"@expo/config-plugins": "56.0.2",
|
|
37
|
-
"expo-module-scripts": "56.0.1",
|
|
38
|
-
"@expo/plist": "0.6.1"
|
|
49
|
+
"update-check": "^1.5.4"
|
|
39
50
|
},
|
|
40
|
-
"gitHead": "
|
|
41
|
-
|
|
42
|
-
"build": "ncc build ./src/index.ts -o build/",
|
|
43
|
-
"build:prod": "ncc build ./src/index.ts -o build/ --minify --no-cache --no-source-map-register",
|
|
44
|
-
"clean": "expo-module clean",
|
|
45
|
-
"lint": "expo-module lint",
|
|
46
|
-
"test": "expo-module test",
|
|
47
|
-
"typecheck": "expo-module typecheck",
|
|
48
|
-
"watch": "pnpm run build --watch"
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
+
"gitHead": "0675db12d13a5309e3109e8ecf7f6011522194c6"
|
|
52
|
+
}
|