-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.31 KB
/
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
40
41
42
{
"name": "unity-xcode-builder",
"version": "1.1.3",
"description": "A GitHub Action to build, archive, and upload Unity exported xcode projects.",
"author": "buildalon",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/buildalon/unity-xcode-builder.git"
},
"bugs": {
"url": "https://github.com/buildalon/unity-xcode-builder/issues"
},
"homepage": "https://github.com/buildalon/unity-xcode-builder",
"main": "dist/index.js",
"keywords": [],
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@actions/glob": "^0.5.0",
"@rage-against-the-pixel/app-store-connect-api": "^3.6.0",
"plist": "^3.1.0",
"semver": "^7.6.3",
"uuid": "^10.0.0"
},
"devDependencies": {
"@types/node": "^22.2.0",
"@types/plist": "^3.0.5",
"@types/semver": "^7.5.8",
"@types/uuid": "^10.0.0",
"@vercel/ncc": "^0.34.0",
"shx": "^0.3.4",
"typescript": "^5.5.4"
},
"scripts": {
"build": "npm run clean && npm run bundle",
"bundle": "ncc build src/index.ts -o dist --source-map --license licenses.txt",
"watch": "ncc build src/index.ts -o dist --source-map --license licenses.txt --watch",
"clean": "npm install && shx rm -rf dist/ out/ node_modules/ && npm ci"
}
}