forked from markeytos/code-sign-action
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 733 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 733 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
{
"name": "code-sign-action",
"version": "3.0.0",
"description": "Sign files with a code signing certificate.",
"main": "index.js",
"scripts": {
"build": "tsc && ncc build lib/index.js -m"
},
"repository": {
"type": "git",
"url": "git+https://github.com/skymatic/code-sign-action.git"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/skymatic/code-sign-action/issues"
},
"homepage": "https://github.com/skymatic/code-sign-action#readme",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.1"
},
"devDependencies": {
"@types/node": "20.11.1",
"@vercel/ncc": "^0.38.3",
"typescript": "^4.9.5"
}
}