create-expo-module 56.0.0 → 56.0.1

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.
Files changed (3) hide show
  1. package/LICENSE +21 -0
  2. package/build/index.js +1 -1
  3. package/package.json +16 -17
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-expo-module",
3
- "version": "56.0.0",
3
+ "version": "56.0.1",
4
4
  "description": "The script to create the Expo module",
5
5
  "keywords": [
6
6
  "expo",
@@ -30,19 +30,7 @@
30
30
  "engines": {
31
31
  "node": ">=18.13.0"
32
32
  },
33
- "scripts": {
34
- "build": "ncc build ./src/index.ts -o build/",
35
- "build:prod": "ncc build ./src/index.ts -o build/ --minify --no-cache --no-source-map-register",
36
- "clean": "expo-module clean",
37
- "lint": "expo-module lint",
38
- "typecheck": "expo-module typecheck",
39
- "test": "expo-module test",
40
- "test:e2e": "expo-module test --config e2e/jest.config.js --runInBand",
41
- "watch": "pnpm run build --watch",
42
- "prepublishOnly": "pnpm run clean && pnpm run build:prod"
43
- },
44
33
  "devDependencies": {
45
- "@expo/json-file": "10.1.0",
46
34
  "@expo/rudder-sdk-node": "^1.1.1",
47
35
  "@expo/spawn-async": "^1.7.2",
48
36
  "@octokit/types": "^15.0.0",
@@ -59,12 +47,23 @@
59
47
  "cross-spawn": "^7.0.5",
60
48
  "debug": "^4.3.4",
61
49
  "ejs": "^3.1.10",
62
- "expo-module-scripts": "56.0.0",
63
50
  "getenv": "^2.0.0",
64
51
  "ora": "^5.4.1",
65
52
  "prompts": "^2.4.2",
66
53
  "multitars": "^1.0.0",
67
- "validate-npm-package-name": "^6.0.2"
54
+ "validate-npm-package-name": "^6.0.2",
55
+ "@expo/json-file": "10.1.1",
56
+ "expo-module-scripts": "56.0.1"
68
57
  },
69
- "gitHead": "6dcd9ce9d615d25df78597f60520492e35e02efb"
70
- }
58
+ "gitHead": "71ec800b2fa6133d22d69b70945132e22f1b7ae8",
59
+ "scripts": {
60
+ "build": "ncc build ./src/index.ts -o build/",
61
+ "build:prod": "ncc build ./src/index.ts -o build/ --minify --no-cache --no-source-map-register",
62
+ "clean": "expo-module clean",
63
+ "lint": "expo-module lint",
64
+ "typecheck": "expo-module typecheck",
65
+ "test": "expo-module test",
66
+ "test:e2e": "expo-module test --config e2e/jest.config.js --runInBand",
67
+ "watch": "pnpm run build --watch"
68
+ }
69
+ }