-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.36 KB
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
37
38
39
40
41
42
43
44
{
"name": "action-generate-token-github-app",
"version": "1.1.3",
"description": "Action to generate token for GitHub App.",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "github:padupe/action-generate-token-github-app"
},
"author": "Paulo Eduardo Peixoto <peixoto.pauloeduardo@gmail.com>",
"license": "MIT",
"private": false,
"scripts": {
"build": "swc src -d dist --source-maps --copy-files",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"package": "ncc build src/index.ts --license licenses.txt --source-map -o dist",
"check-lint": "yarn format && yarn lint"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@octokit/auth-app": "^4.0.9",
"@octokit/core": "^4.2.0",
"dotenv": "^16.0.3",
"jsonwebtoken": "^9.0.0",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.51",
"@types/dotenv": "^8.2.0",
"@types/jsonwebtoken": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.7",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.4"
}
}