-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.14 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
{
"name": "vydanne",
"version": "0.9.0",
"description": "App Store Connect + Google Play submission prep — the companion to zdymak (media). Native Node (no fastlane/Ruby/Python): localized listings, screenshot/preview/icon upload, ratings, review contact, accessibility & privacy labels, IAP, export docs, build upload to TestFlight / a Play closed track, a diff of local-vs-store, and a preflight verifier that encodes the store gotchas. Never submits for review. iOS/macOS via the ASC REST API; Android via the Play Developer Edits API (--store google).",
"keywords": [
"app-store-connect",
"google-play",
"aso",
"ios",
"android",
"app-store",
"play-developer-api",
"fastlane-alternative",
"app-metadata",
"screenshots",
"app-preview",
"publishing"
],
"type": "module",
"main": "src/index.mjs",
"types": "./types/index.d.ts",
"exports": {
".": {
"types": "./types/index.d.ts",
"default": "./src/index.mjs"
}
},
"bin": {
"vydanne": "bin/vydanne.mjs"
},
"engines": {
"node": ">=20.9.0"
},
"license": "MIT",
"author": "Lonli-Lokli <lonli.lokli@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/Lonli-Lokli/vydanne.git"
},
"homepage": "https://github.com/Lonli-Lokli/vydanne#readme",
"bugs": "https://github.com/Lonli-Lokli/vydanne/issues",
"files": [
"bin",
"src",
"types/index.d.ts",
"SKILL.md",
"vydanne.config.example.mjs",
"README.md",
"GETTING_STARTED.md"
],
"scripts": {
"check:docs": "node scripts/check-docs.mjs",
"check:types": "tsc --noEmit -p tsconfig.json && node scripts/check-types.mjs",
"check:config": "node scripts/check-config.mjs",
"verify": "npm run check:docs && npm run check:types && npm run check:config",
"prepublishOnly": "npm run verify",
"release:patch": "node scripts/release.mjs patch",
"release:minor": "node scripts/release.mjs minor",
"release:major": "node scripts/release.mjs major"
},
"dependencies": {
"dotenv": "^17.4.2",
"pdfkit": "^0.15.0",
"sharp": "^0.35.3"
},
"devDependencies": {
"typescript": "^5.6.0"
}
}