forked from 10play/expo-air
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.81 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.81 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@10play/expo-air",
"version": "0.13.11",
"description": "Vibe Coding for React-Native",
"main": "build/index.js",
"types": "build/index.d.ts",
"bin": {
"expo-air": "./cli/dist/bin/expo-air.js"
},
"expo": {
"configPlugin": "./plugin/build/index.js"
},
"files": [
"app.plugin.js",
"build/",
"cli/dist/",
"plugin/build/",
"widget/*.ts",
"widget/*.tsx",
"widget/*.js",
"widget/app.json",
"widget/package.json",
"widget/tsconfig.json",
"widget/components/",
"widget/services/",
"ios/",
"android/src/",
"android/src/main/assets/",
"android/build.gradle",
"expo-module.config.json"
],
"scripts": {
"build": "npm run build:module && npm run build:plugin && npm run build:cli && npm run build:widget",
"build:module": "tsc --project tsconfig.json",
"build:plugin": "cd plugin && tsc",
"build:cli": "cd cli && npm run build",
"build:widget": "npm run build:widget:ios && npm run build:widget:android",
"build:widget:ios": "cd widget && npx expo export --platform ios --output-dir ../ios/widget-export --no-bytecode && cp ../ios/widget-export/_expo/static/js/ios/*.js ../ios/widget.jsbundle && rm -rf ../ios/widget-export",
"build:widget:android": "cd widget && npx expo export --platform android --output-dir ../android/widget-export --no-bytecode && mkdir -p ../android/src/main/assets && cp ../android/widget-export/_expo/static/js/android/*.js ../android/src/main/assets/widget.android.bundle && rm -rf ../android/widget-export",
"clean": "rm -rf build plugin/build cli/dist && expo-module clean",
"lint": "expo-module lint",
"typecheck": "tsc --noEmit && cd cli && tsc --noEmit && cd ../plugin && tsc --noEmit",
"test": "expo-module test",
"prepare": "expo-module prepare",
"prepublishOnly": "npm run clean && npm run build && npm run typecheck",
"publish:alias": "cd packages/expo-air && npm publish",
"version:sync": "node -e \"const pkg = require('./package.json'); const alias = require('./packages/expo-air/package.json'); alias.version = pkg.version; alias.dependencies['@10play/expo-air'] = '^' + pkg.version; require('fs').writeFileSync('./packages/expo-air/package.json', JSON.stringify(alias, null, 2) + '\\n');\"",
"expo-module": "expo-module",
"dev": "cd cli && npx tsx bin/expo-air.ts dev",
"dev:android": "cd cli && npx tsx bin/expo-air.ts dev:android",
"cli:start": "cd cli && npx tsx bin/expo-air.ts start",
"widget:start": "cd widget && npm start",
"open:ios": "xed example/ios",
"open:android": "open -a \"Android Studio\" example/android",
"android": "expo run:android",
"ios": "expo run:ios",
"setup": "npm install && cd widget && npm install && cd ../example && npm install",
"docs:dev": "cd website && npm run dev",
"docs:build": "cd website && npm run build"
},
"keywords": [
"react-native",
"expo",
"@10play/expo-air",
"ExpoAir"
],
"repository": "https://github.com/10play/expo-air",
"bugs": {
"url": "https://github.com/10play/expo-air/issues"
},
"author": "10play",
"license": "MIT",
"homepage": "https://github.com/10play/expo-air#readme",
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.29",
"chalk": "^4.1.2",
"chokidar": "^3.6.0",
"commander": "^12.1.0",
"localtunnel": "^2.0.2",
"plist": "^3.1.0",
"tree-kill": "^1.2.2",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/localtunnel": "^2.0.4",
"@types/node": "^20.0.0",
"@types/plist": "^3.0.5",
"@types/react": "~19.1.0",
"@types/ws": "^8.5.12",
"expo": "~54.0.32",
"expo-module-scripts": "^5.0.8",
"react": "19.1.0",
"react-native": "0.81.5",
"typescript": "~5.9.2"
},
"peerDependencies": {
"expo": ">=54.0.0",
"react": ">=18.0.0",
"react-native": ">=0.74.0"
}
}