forked from mxcl/xcodebuild
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 732 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 732 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
{
"scripts": {
"build": "tsc",
"format": "eslint . --fix && prettier --write .",
"lint": "eslint . && prettier --check .",
"prepare": "npm run lint && ncc build src/index.ts --minify --source-map"
},
"dependencies": {
"@actions/artifact": "^1.1.1",
"@actions/core": "^1.6.0",
"@actions/exec": "^1.1.0",
"semver": "^7.3.5"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.2",
"@types/node": "^18.15.5",
"@types/semver": "^7.3.9",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.8.6",
"typescript": "^5.0.2"
}
}