-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.29 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.29 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
{
"name": "xcode-release-size-optimization-agent-skill",
"version": "0.1.0",
"private": false,
"description": "Agent skills and CLI tooling for analyzing and reducing iOS release build size before App Store submission.",
"bin": {
"xcode-release-size-skill": "bin/xcode-release-size-skill.js"
},
"files": [
"bin",
"scripts",
"references",
"skills",
"agents",
"AGENTS.md",
"CLAUDE.md",
"README.md"
],
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danglingP0inter/xcode-release-size-optimization-agent-skill.git"
},
"homepage": "https://github.com/danglingP0inter/xcode-release-size-optimization-agent-skill",
"bugs": {
"url": "https://github.com/danglingP0inter/xcode-release-size-optimization-agent-skill/issues"
},
"keywords": [
"xcode",
"ios",
"ipa",
"app-size",
"binary-size",
"optimization",
"agent-skill"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"check": "python3 -m py_compile scripts/*.py && node bin/xcode-release-size-skill.js --help >/dev/null",
"cli": "node bin/xcode-release-size-skill.js",
"report": "python3 scripts/render_report.py",
"fix:size-settings": "python3 scripts/apply_low_risk_size_fixes.py"
}
}