-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
39 lines (39 loc) · 985 Bytes
/
package.json
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
{
"name": "xcodebuild-action",
"version": "3.0.0",
"description": "A GitHub action that runs xcodebuild.",
"engines": {
"node": ">=20"
},
"exports": {
".": "./dist/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"pack": "rm -rf dist && ncc build lib/main.js -o dist --license license.txt --target es2022"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sersoft-gmbh/xcodebuild-action.git"
},
"keywords": [
"Xcode",
"xcodebuild"
],
"author": "ser.soft GmbH",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/sersoft-gmbh/xcodebuild-action/issues"
},
"homepage": "https://github.com/sersoft-gmbh/xcodebuild-action#readme",
"dependencies": {
"@actions/core": "^1.11.1"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@types/node": "^20.17.10",
"@vercel/ncc": "^0.38.3",
"typescript": "^5.7.2"
}
}