This repository has been archived by the owner on Jul 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
67 lines (67 loc) · 1.53 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@expo/electron-adapter",
"version": "0.0.55",
"description": "Use Electron with Expo",
"main": "build/Electron.js",
"types": "build/Electron.d.ts",
"scripts": {
"watch": "tsc --watch",
"build": "tsc",
"test": "cd example && yarn && yarn test:build",
"prepare": "yarn run clean && yarn build",
"clean": "rimraf ./tsconfig.tsbuildinfo",
"lint": "eslint ."
},
"bin": {
"expo-electron": "./bin/expo-electron.js"
},
"repository": {
"type": "git",
"url": "https://github.com/expo/expo-electron-adapter.git"
},
"keywords": [
"expo",
"expo-web",
"json",
"electron",
"pwa",
"react",
"react-native",
"react-dom",
"react-native-web"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/expo/expo-electron-adapter/issues"
},
"homepage": "https://github.com/expo/expo-electron-adapter",
"files": [
"build",
"scripts",
"bin",
"template"
],
"devDependencies": {
"@expo/babel-preset-cli": "0.2.20",
"@expo/webpack-config": "0.12.68",
"@types/fs-extra": "^9.0.11",
"eslint-config-universe": "^7.0.1",
"rimraf": "^3.0.2"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"@expo/webpack-config": "^0.10.1",
"electron": "^6.0.12"
},
"dependencies": {
"@expo/config": "3.3.38",
"@expo/package-manager": "0.0.41",
"@expo/spawn-async": "^1.5.0",
"chalk": "^4.0.0",
"electron-webpack": "^2.7.4",
"resolve-from": "^5.0.0",
"typescript": "^4.2.4"
}
}