-
Notifications
You must be signed in to change notification settings - Fork 127
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 955 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 955 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
27
28
29
30
31
32
33
34
35
36
{
"name": "github-action",
"version": "4.0.0",
"description": "Connect your GitHub Action workflow to Tailscale",
"main": "dist/main.js",
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"build": "ncc build src/main.ts -o dist && ncc build src/logout/logout.ts -o dist/logout"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tailscale/github-action"
},
"author": "Lee Briggs, Tailscale Inc, & Contributors",
"license": "BSD-3-Clause",
"dependencies": {
"@actions/cache": "^5.0.2",
"@actions/core": "^2.0.2",
"@actions/exec": "^2.0.0",
"@actions/tool-cache": "^3.0.0",
"semver": "^7.7.3"
},
"devDependencies": {
"@types/node": "^24.10.2",
"@vercel/ncc": "^0.38.3",
"typescript": "^5.8.3",
"prettier": "^3.7.4",
"prettier-plugin-organize-imports": "^4.3.0"
},
"overrides": {
"glob": "^10.3.10",
"inflight": "npm:@isaacs/inflight@^1.0.6"
}
}