-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.09 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
43
{
"name": "swifty-linux-action",
"version": "3.0.0",
"description": "Sets up a Swift environment on Linux",
"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/swifty-linux-action.git"
},
"keywords": [
"Swift",
"Linux"
],
"author": "ser.soft GmbH",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/sersoft-gmbh/swifty-linux-action/issues"
},
"homepage": "https://github.com/sersoft-gmbh/swifty-linux-action#readme",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.2"
},
"devDependencies": {
"@tsconfig/node20": "20.1.5",
"@types/node": "^20.17.30",
"@vercel/ncc": "^0.38.3",
"typescript": "^5.8.3"
}
}