-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 962 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": "install-swift-tool",
"description": "Install swift based tools inside a GitHub Action.",
"repository": {
"type": "git",
"url": "github:Cyberbeni/install-swift-tool.git"
},
"scripts": {
"format": "eslint --max-warnings=0 --fix .",
"lint": "eslint .",
"build": "ncc build --minify --out dist src/main.ts",
"test": "jest"
},
"keywords": [],
"author": "Cyberbeni",
"license": "MIT",
"dependencies": {
"@actions/cache": "^3.3.0",
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"semver": "^7.6.3",
"uuid": "^11.0.3"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@stylistic/eslint-plugin": "^2.11.0",
"@tsconfig/node20": "^20.1.4",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.1",
"@types/semver": "^7.5.8",
"@types/uuid": "^10.0.0",
"@vercel/ncc": "^0.38.3",
"eslint": "^9.15.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3",
"typescript-eslint": "^8.15.0"
}
}