forked from axelmarciano/expo-open-ota
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.57 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.57 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
{
"name": "eoas",
"version": "2.2.2",
"main": "index.js",
"scripts": {
"build": "tsc --project tsconfig.json",
"watch": "tsc --project tsconfig.json --watch",
"lint": "eslint ."
},
"engines": {
"node": ">=18.0.0"
},
"homepage": "https://github.com/axelmarciano/expo-open-ota/tree/main/eoas",
"keywords": [
"expo-open-ota",
"expo",
"eas",
"cli"
],
"author": "Axel Marciano",
"license": "MIT",
"description": "A CLI tool to manage publishing and OTA updates for expo-open-OTA self-hosted server. This is not an official tool from Expo but an open-source project (https://github.com/axelmarciano/expo-open-ota)",
"repository": "axelmarciano/expo-open-ota",
"dependencies": {
"@expo/code-signing-certificates": "^0.0.5",
"@expo/config": "10.0.6",
"@expo/config-plugins": "9.0.12",
"@expo/eas-build-job": "1.0.165",
"@expo/fingerprint": "^0.11.7",
"@expo/package-manager": "1.7.0",
"@expo/spawn-async": "1.7.2",
"@oclif/core": "^4.2.4",
"@types/node-fetch": "^2.6.12",
"@urql/core": "4.0.11",
"@urql/exchange-retry": "1.2.0",
"better-opn": "3.0.2",
"chalk": "4.1.2",
"eslint": "^8.57.1",
"fast-glob": "3.3.2",
"fetch-retry": "^6.0.0",
"figures": "3.2.0",
"file-type": "^20.0.0",
"form-data": "^4.0.1",
"fs-extra": "11.2.0",
"getenv": "1.0.0",
"graphql": "16.8.1",
"graphql-tag": "^2.12.6",
"https-proxy-agent": "5.0.1",
"ignore": "5.3.0",
"joi": "17.11.0",
"jscodeshift": "^17.1.2",
"log-symbols": "^4.0.0",
"mime": "3.0.0",
"node-fetch": "^2.6.7",
"ora": "^5.1.0",
"prettier": "3.1.1",
"prompts": "^2.4.2",
"recast": "^0.23.9",
"resolve-from": "5.0.0",
"semver": "7.5.4",
"tar": "7.5.4",
"terminal-link": "2.1.1",
"uuid": "9.0.1"
},
"devDependencies": {
"@babel/parser": "^7.26.7",
"@babel/types": "^7.26.7",
"@tsconfig/node18": "^18.2.4",
"@types/fs-extra": "11.0.4",
"@types/getenv": "^1.0.0",
"@types/jscodeshift": "^0.12.0",
"@types/mime": "^3.0.4",
"@types/node": "^18.19.74",
"@types/prompts": "^2.4.9",
"@types/semver": "7.5.6",
"@types/tar": "6.1.10",
"@types/uuid": "9.0.7",
"eslint-config-universe": "^14.0.0",
"eslint-plugin-async-protect": "^3.1.0",
"eslint-plugin-node": "^11.1.0",
"ts-node": "10.9.2",
"typescript": "5.3.3"
},
"bin": {
"eoas": "./bin/run.js"
},
"oclif": {
"bin": "eoas",
"commands": "./dist/commands",
"dirname": "eoas",
"topicSeparator": ":"
},
"files": [
"/bin",
"/dist"
]
}