-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.06 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
{
"name": "@urcomputeringpal/github-script-ts",
"version": "0.0.7",
"description": "actions/github-script for Typescript",
"repository": "https://github.com/urcomputeringpal/github-script-ts",
"files": [
"dist/**/*.d.ts",
"dist/**/*.js"
],
"main": "dist/index.js",
"types": "dist/types.d.ts",
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"build": "tsc",
"prepare": "npm run format && npm run build",
"integration": "./test.sh"
},
"dependencies": {
"@actions/core": "1.10.0",
"@actions/exec": "1.1.1",
"@actions/github": "5.1.1",
"@actions/glob": "0.4.0",
"@actions/io": "1.1.3",
"@octokit/rest": "19.0.11",
"github-script": "https://github.com/actions/github-script/archive/refs/tags/v6.4.1.tar.gz",
"node-fetch": "3.3.1"
},
"devDependencies": {
"@types/node": "16.18.31",
"prettier": "2.8.8",
"ts-loader": "9.4.3",
"typescript": "4.9.5"
}
}