forked from jupyter/pr-triage-board-bot
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 892 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 892 Bytes
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
{
"name": "pr-triage-board-bot",
"version": "0.1.0",
"description": "A bot to manage a GitHub Project board for PR triage",
"type": "module",
"dependencies": {
"@octokit/auth-app": "^8.0.2",
"@octokit/core": "^7.0.3",
"@octokit/plugin-paginate-graphql": "^6.0.0",
"@octokit/plugin-throttling": "^11.0.1",
"commander": "^14.0.0",
"memoize": "^10.1.0"
},
"devDependencies": {
"@swc/cli": "^0.7.8",
"@swc/core": "^1.13.3",
"@types/node": "^24.2.1",
"chokidar": "^4.0.3",
"typescript": "^5.9.2"
},
"scripts": {
"start": "swc src/ --copy-files --delete-dir-on-start -d dist && node dist/src/main.js",
"build": "swc src/ --copy-files --delete-dir-on-start -d dist",
"build:watch": "swc src/ --copy-files --delete-dir-on-start -d dist --watch",
"typecheck": "tsc --noEmit"
},
"engines": {
"node": ">23.0.0"
}
}