-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.48 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.48 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "github-cli.ts",
"version": "0.0.0",
"description": "Github 레포지토리 및 사용자 정보를 분석하고 가져오는 CLI",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"github": "./dist/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/RKDH2/github-cli.ts"
},
"scripts": {
"lint": "eslint src --ignore-pattern .gitignore",
"build": "rimraf dist && tsc",
"release": "semantic-release"
},
"keywords": [
"github",
"cli",
"typescript",
"repository",
"user",
"info",
"analyze"
],
"author": "Garnet",
"license": "MIT",
"dependencies": {
"@types/node": "^22.13.10",
"axios": "^1.8.3",
"chalk": "5.6.2",
"commander": "^14.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/release-notes-generator": "^14.0.3",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.3",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"semantic-release": "^24.2.3"
},
"packageManager": "pnpm@10.21.0",
"engines": {
"node": ">=18.0.0"
}
}