-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 733 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 733 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
{
"name": "create-xcode",
"version": "0.2.0",
"description": "Create Xcode projects from the command line. Emulates Xcode's new project flow for CLI and agent use.",
"type": "module",
"bin": {
"create-xcode": "./build/cli.mjs"
},
"scripts": {
"start": "bun src/cli.ts",
"extract": "bun scripts/extract-templates.ts",
"build": "bun scripts/build.ts",
"prepublishOnly": "bun run build",
"test": "bun test"
},
"files": [
"build/cli.mjs",
"templates"
],
"devDependencies": {
"@bacons/xcode": "^1.0.0-alpha.33",
"@types/bun": "latest",
"@types/node": "^22",
"@types/prompts": "^2.4.9",
"prompts": "^2.4.2"
},
"peerDependencies": {
"typescript": "^5"
}
}