-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 749 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 749 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
{
"name": "github-issue-fork",
"version": "1.0.0",
"description": "This tool is designed to synchronize issues between two GitHub repositories, including the ability to create new issues, update existing ones, and close issues based on their state in the upstream repository.",
"main": "src/main.ts",
"types": "commonjs",
"scripts": {
"start": "npx tsx src/main.ts",
"tool":"npx tsx src/tool.ts"
},
"keywords": [
"github",
"issue",
"fork"
],
"author": "IOLOII",
"license": "MIT",
"dependencies": {
"@actions/github": "^6.0.0",
"@types/node": "^22.13.4",
"axios": "^1.7.9",
"dotenv": "^16.4.7",
"qs": "^6.14.0",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^5.0.0"
}
}