forked from expo/expo-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.05 KB
/
package.json
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/next-adapter",
"version": "5.0.2",
"description": "Adapter for using Next.js to bundle Expo web projects",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"watch": "tsc --watch --preserveWatchOutput",
"build": "tsc",
"prepare": "yarn run clean && yarn build",
"clean": "rimraf build ./tsconfig.tsbuildinfo",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/expo/expo-cli.git",
"directory": "packages/next-adapter"
},
"keywords": [
"expo",
"next.js",
"react",
"react-native",
"react-dom",
"react-native-web"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/expo/expo-cli/issues"
},
"homepage": "https://github.com/expo/expo-cli/tree/main/packages/next-adapter#readme",
"files": [
"build"
],
"peerDependencies": {
"expo": "^46",
"next": "^13",
"react": "^18",
"react-native-web": "~0.18.0",
"webpack": "^4.46.0 || ^5.74.0"
},
"publishConfig": {
"access": "public"
}
}