-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 999 Bytes
/
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
{
"name": "@imhoffd/needs-reply",
"private": true,
"version": "2.0.0",
"description": "Closes issues with a message after no reply in a given timeframe",
"main": "dist/index.js",
"scripts": {
"prettier": "prettier 'src/**/*.ts'",
"fmt": "npm run prettier -- --write",
"lint": "npm run prettier -- --check",
"build": "tsc && ncc build",
"watch": "tsc -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/imhoffd/needs-reply.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/imhoffd/needs-reply/issues"
},
"homepage": "https://github.com/imhoffd/needs-reply#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@vercel/ncc": "^0.38.2"
},
"devDependencies": {
"@imhoff/prettier-config": "^2.2.0",
"@types/node": "^22.7.1",
"prettier": "^3.3.3",
"typescript": "^5.6.2"
},
"prettier": "@imhoff/prettier-config"
}