-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.56 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.56 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "setup-swift",
"version": "1.13.0",
"private": true,
"description": "Setup Swift environment.",
"keywords": [
"swift",
"setup",
"setup-swift",
"actions",
"github-actions",
"ci"
],
"homepage": "https://github.com/SwiftyLab/setup-swift#readme",
"bugs": {
"url": "https://github.com/SwiftyLab/setup-swift/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SwiftyLab/setup-swift.git"
},
"license": "MIT",
"author": "Soumya Ranjan Mahunt",
"type": "module",
"main": "lib/main.js",
"scripts": {
"all": "npm run format && npm run build && npm run lint && npm run package && npm run test",
"build": "tsc",
"format": "sort-package-json && prettier --write .",
"lint": "depcheck --ignores @vitest/coverage-istanbul && eslint && prettier --check .",
"package": "esbuild lib/main.js --bundle --platform=node --target=node24 --format=esm --banner:js=\"import{createRequire}from'module';import{fileURLToPath}from'url';import{dirname}from'path';const require=createRequire(import.meta.url);const __filename=fileURLToPath(import.meta.url);const __dirname=dirname(__filename);\" --outfile=dist/index.js",
"prepare": "node --import jiti/register -e \"import('./.github/utils/update_metadata.ts').then(m => (m.default?.fetch ?? m.fetch)())\" && npm run build",
"test": "vitest run --coverage"
},
"dependencies": {
"@actions/cache": "^6.0.0",
"@actions/core": "^3.0.0",
"@actions/exec": "^3.0.0",
"@actions/io": "^3.0.2",
"@actions/tool-cache": "^4.0.0",
"getos": "^3.2.1",
"glob": "^13.0.0",
"js-yaml": "^4.1.1",
"lodash": "^4.17.23",
"plist": "^3.1.0",
"semver": "^7.7.4"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.7.1",
"@types/getos": "^3.0.4",
"@types/js-yaml": "^4.0.9",
"@types/lodash": "^4.17.23",
"@types/plist": "^3.0.5",
"@types/semver": "^7.7.1",
"@typescript-eslint/eslint-plugin": "^8.53.0",
"@typescript-eslint/parser": "^8.58.0",
"@vitest/coverage-istanbul": "^4.1.4",
"@vitest/eslint-plugin": "^1.6.14",
"conventional-changelog-conventionalcommits": "^7.0.0",
"depcheck": "^1.4.7",
"esbuild": "0.27.4",
"eslint": "^10.1.0",
"globals": "^17.4.0",
"jiti": "^2.6.1",
"nock": "^14.0.10",
"prettier": "^3.8.1",
"sort-package-json": "^3.6.1",
"typescript": "^6.0.2",
"vitest": "^4.1.1"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=8.0.0"
},
"swiftorg-contract-version": "1"
}