-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.14 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.14 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
{
"name": "github-app-token",
"version": "2.1.0",
"license": "MIT",
"author": "step-security",
"type": "module",
"files": [
"action.yml",
"dist"
],
"scripts": {
"build": "npm run build:main && npm run build:post",
"build:main": "npm run compile -- --out ./dist/main src/main.ts ",
"build:post": "npm run compile -- --out ./dist/post src/post.ts",
"compile": "ncc build --minify --no-cache --target es2022 --v8-cache",
"prettier": "prettier --write --ignore-path .prettierignore \"./**/*.{js,json,md,ts}\"",
"prettier:check": "prettier --check --ignore-path .prettierignore \"./**/*.{js,json,md,ts}\"",
"typecheck": "tsc --build"
},
"dependencies": {
"@actions/core": "^2.0.1",
"@actions/github": "^8.0.0",
"@octokit/auth-app": "^6.0.0",
"@octokit/request": "^8.1.1",
"axios": "^1.16.1",
"is-base64": "^1.1.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"@types/is-base64": "^1.1.1",
"@types/node": "^20.6.2",
"@vercel/ncc": "^0.38.4",
"prettier": "^3.0.3",
"prettier-plugin-packagejson": "^2.4.5",
"typescript": "^5.2.2"
}
}