-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.26 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
36
37
38
39
40
41
42
{
"name": "last-issue-action",
"private": true,
"version": "2.3.0",
"description": "GitHub Action to find and export the number of last updated issue whithin some repository that has given labels.",
"type": "commonjs",
"author": "Micael Levi L. C. (https://micalevisk.github.io)",
"repository": {
"type": "git",
"url": "git+https://github.com/micalevisk/last-issue-action.git"
},
"keywords": [
"github-action",
"issue",
"last issue"
],
"scripts": {
"format": "prettier --config .prettierrc --write .",
"prepack": "npm run build",
"prebuild": "npm run compile",
"build": "ncc --minify --target es2021 -o bundle build dist/index.js",
"precompile": "npm run clean",
"compile": "tsc -p .",
"watch/compile": "tsc --watch -p .",
"clean": "rimraf dist bundle",
"exec": "cross-env NODE_ENV=development node -r dotenv/config dist",
"exec:bundle": "cross-env NODE_ENV=development node -r dotenv/config bundle"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@octokit/rest": "^19.x"
},
"devDependencies": {
"@types/node": "^20.10.6",
"@vercel/ncc": "^0.38.1",
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"prettier": "^3.1.1",
"rimraf": "^5.0.5",
"typescript": "^5.3.3"
}
}