forked from ainame/xcodeproj-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 781 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 781 Bytes
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
{
"name": "@ainame/xcodeproj-cli",
"version": "0.2.2",
"description": "Command-line tool for manipulating Xcode project files",
"keywords": [
"xcode",
"xcodeproj",
"ios",
"macos",
"swift",
"build",
"cli"
],
"homepage": "https://github.com/ainame/xcodeproj-cli",
"bugs": {
"url": "https://github.com/ainame/xcodeproj-cli/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/ainame/xcodeproj-cli.git"
},
"license": "MIT",
"author": "ainame",
"type": "module",
"bin": {
"xcodeproj": "./npm/wrapper.js"
},
"scripts": {
"postinstall": "node npm/postinstall.js"
},
"os": [
"darwin",
"linux"
],
"cpu": [
"x64",
"arm64"
],
"engines": {
"node": ">=18.0.0"
}
}