-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
27 lines (27 loc) · 834 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
{
"name": "action-build-typescript",
"version": "1.3.1",
"description": "A GitHub Action that builds your TypeScript projects and optionally also pushes the generated code to a different branch on your repository",
"main": "src/index.mjs",
"repository": {
"type": "git",
"url": "git+https://github.com/alexthemaster/action-build-typescript.git"
},
"keywords": [
"github",
"action",
"github action"
],
"author": "Alex Kovacs <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexthemaster/action-build-typescript/issues"
},
"homepage": "https://github.com/alexthemaster/action-build-typescript#readme",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^4.0.0",
"@actions/io": "^1.1.3"
}
}