-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.19 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.19 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
{
"name": "expo-build-flags",
"version": "0.8.6",
"repository": "https://github.com/fullscript/expo-build-flags",
"author": "Wes Johnson <wes.johnson@fullscript.com>",
"license": "MIT",
"bin": {
"build-flags": "bin/build-flags.sh",
"build-flags-autolinking": "bin/build-flags-autolinking.sh"
},
"main": "build/api/index.js",
"files": [
"bin",
"build",
"app.plugin.js",
"babel-plugin.js"
],
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@expo/config-plugins": "^8.0.9",
"@jest/globals": "^29.7.0",
"@tsconfig/node18": "^18.2.4",
"@types/babel__core": "^7.20.5",
"@types/babel__helper-plugin-utils": "^7.10.3",
"@types/node": "^22.6.1",
"expo-native-lockfiles": "^0.2.0",
"jest": "^29.7.0",
"pod-lockfile": "^1.2.2",
"typescript": "^5"
},
"dependencies": {
"@babel/helper-plugin-utils": "^7.24.8",
"yaml": "^2.5.1"
},
"peerDependencies": {
"typescript": "*"
},
"scripts": {
"build": "tsc",
"test": "npm run test:unit && EXPO_SDK_TARGET=54 ./test/run-integration.sh",
"test:unit": "./node_modules/.bin/jest"
}
}