-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 969 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
38
39
40
41
42
{
"name": "github-project-exporter",
"description": "A tool to export github projects",
"version": "0.0.2",
"author": "Muhammad Assar <[email protected]>",
"license": "MIT",
"keywords": [
"node",
"nodejs",
"github",
"projects",
"csv",
"export"
],
"repository": {
"type": "git",
"url": "git+https://github.com/MuhAssar/github-project-exporter.git"
},
"bugs": {
"url": "https://github.com/MuhAssar/github-project-exporter/issues"
},
"homepage": "https://github.com/MuhAssar/github-project-exporter",
"type": "commonjs",
"bin": {
"gpe": "./dist/index.js"
},
"scripts": {
"start": "node ./dist/index.js",
"build": "tsc -p ./tsconfig.json",
"publish": "npm publish"
},
"devDependencies": {
"@types/node": "^22.9.3",
"@types/yargs": "^17.0.33",
"typescript": "^5.7.2"
},
"dependencies": {
"axios": "^1.7.7",
"csv-writer": "^1.6.0",
"yargs": "^17.7.2"
}
}