-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.39 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 3.39 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
102
103
104
105
106
107
108
109
110
111
112
{
"name": "launch-store",
"version": "0.32.8",
"description": "Open-source, self-hosted alternative to Expo EAS - build, sign, configure your stores, and ship Expo / React Native apps to the App Store & Google Play from one typed launch.config.ts - your machine, your keys. No per-build bill.",
"keywords": [
"cli",
"mobile",
"ios",
"android",
"app-store",
"testflight",
"play-store",
"fastlane",
"react-native",
"expo",
"eas",
"code-signing",
"app-store-connect",
"ci-cd",
"eas-alternative",
"expo-eas",
"ota-updates",
"self-hosted"
],
"homepage": "https://github.com/YosefHayim/launch-store#readme",
"bugs": {
"url": "https://github.com/YosefHayim/launch-store/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/YosefHayim/launch-store.git"
},
"author": "YosefHayim",
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"bin": {
"launch": "dist/cli/index.js"
},
"files": [
"dist",
"schema"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json && chmod +x dist/cli/index.js",
"dev": "tsx src/cli/index.ts",
"gen:asc": "tsx scripts/dev/generate-apple-types.ts",
"docs:gen": "tsx scripts/dev/generate-docs.ts",
"docs:check": "tsx scripts/dev/generate-docs.ts --check",
"typecheck": "tsc --noEmit",
"lint": "biome check .",
"lint:fix": "biome check --write --no-errors-on-unmatched --files-ignore-unknown=true .",
"format": "biome format --write .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "vitest run --config vitest.e2e.config.ts",
"launch": "tsx src/cli/index.ts",
"prepare": "husky",
"prepublishOnly": "pnpm build",
"lint:style": "node scripts/dev/check-code-style.mjs",
"lint:style:self-test": "node scripts/dev/check-code-style.mjs --self-test && node scripts/dev/check-grit-rules.mjs && node scripts/dev/migrate-code-style.mjs --self-test",
"style:migrate": "node scripts/dev/replace-type-barrel-imports.mjs && node scripts/dev/migrate-code-style.mjs"
},
"dependencies": {
"@clack/prompts": "^1.5.1",
"@effect/platform": "^0.96.2",
"@effect/platform-node": "0.107.0",
"@googleapis/androidpublisher": "^37.0.0",
"@googleapis/playdeveloperreporting": "^11.0.0",
"chalk": "^5.6.2",
"commander": "^12.1.0",
"effect": "^3.21.4",
"jiti": "^2.4.0",
"jose": "^5.9.6"
},
"devDependencies": {
"@biomejs/biome": "^2.5.1",
"@types/node": "^20.14.0",
"@vitest/coverage-v8": "^4.1.8",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"openapi-typescript": "^7.13.0",
"tsc-alias": "^1.9.1",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"vitest": "^4.1.8"
},
"lint-staged": {
"**/*.{js,mjs,cjs,ts,mts,cts,json,jsonc}": [
"biome format --write --no-errors-on-unmatched"
]
},
"optionalDependencies": {
"@aws-sdk/client-ec2": "^3.1068.0",
"@aws-sdk/client-s3": "^3.1068.0",
"@aws-sdk/credential-providers": "^3.1068.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"@napi-rs/keyring": "^1.3.0"
},
"packageManager": "pnpm@10.33.2"
}