@expo/repack-app 0.2.10 → 0.2.12

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@expo/repack-app",
3
- "version": "0.2.10",
3
+ "version": "0.2.12",
4
4
  "description": "Repacking tool for Expo apps",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",
@@ -10,11 +10,13 @@
10
10
  "build:types": "tsc && api-extractor run",
11
11
  "build:all": "bun run build:js && bun run build:types",
12
12
  "clean": "rm -rf build dist",
13
- "lint": "expo-module lint",
14
- "prepare": "expo-module prepare && bun run clean && bun run build:all",
15
- "prepublishOnly": "expo-module prepublishOnly",
16
- "test": "expo-module test",
17
- "typecheck": "expo-module typecheck"
13
+ "lint": "eslint src",
14
+ "prepare": "bun run clean && bun run build:all",
15
+ "test": "bun test src",
16
+ "test:e2e": "bun test e2e --timeout 120000",
17
+ "test:e2e:android": "bun test e2e --timeout 120000 --test-name-pattern Android",
18
+ "test:e2e:ios": "bun test e2e --timeout 120000 --test-name-pattern iOS",
19
+ "typecheck": "tsc --noEmit"
18
20
  },
19
21
  "bin": {
20
22
  "repack-app": "bin/cli.js"
@@ -36,18 +38,17 @@
36
38
  "@expo/spawn-async": "^1.7.2",
37
39
  "@microsoft/api-extractor": "^7.52.8",
38
40
  "@tsconfig/node22": "^22.0.1",
41
+ "@types/bun": "^1.2.23",
39
42
  "@types/xml2js": "^0.4.14",
40
43
  "ajv": "^8.17.1",
44
+ "bplist-parser": "^0.3.2",
41
45
  "esbuild": "^0.25.4",
42
46
  "eslint": "^9.24.0",
43
- "expo-module-scripts": "^4.1.7",
47
+ "eslint-config-universe": "^15.0.3",
44
48
  "glob": "^11.0.2",
45
- "jest": "^30.1.3",
46
- "jest-snapshot-prettier": "npm:prettier@^3.6.2",
47
49
  "resolve-from": "^5.0.0",
48
50
  "slugify": "^1.6.6",
49
51
  "temp-dir": "^2.0.0",
50
- "ts-jest": "^29.4.1",
51
52
  "typescript": "^5.8.3",
52
53
  "xml2js": "^0.6.2"
53
54
  }