-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 940 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 940 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
{
"name": "@tangro/tangro-github-toolkit",
"version": "1.0.10",
"description": "A helper and wrapper around @actions/github",
"main": "lib/index.js",
"scripts": {
"build": "npm-run-all build:*",
"build:clean": "rimraf lib",
"build:typescript": "tsc -p tsconfig.json",
"release": "npm-run-all release:*",
"release:build": "npm run build",
"release:publish": "npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tangro/tangro-github-toolkit.git"
},
"author": "ankri",
"license": "MIT",
"bugs": {
"url": "https://github.com/tangro/tangro-github-toolkit/issues"
},
"homepage": "https://github.com/tangro/tangro-github-toolkit#readme",
"dependencies": {
"@actions/core": "3.0.0",
"@actions/github": "9.0.0"
},
"devDependencies": {
"@types/node": "25.3.3",
"npm-run-all": "4.1.5",
"rimraf": "6.1.3",
"typescript": "5.9.3"
}
}