-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.29 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "yeareport",
"version": "0.3.1",
"description": "A library of NodeJS tool to summarize git commit log for year-end report.",
"keywords": [
"year-end report",
"llm material",
"gpt material",
"summarize git commit",
"summarize git log",
"git commit log",
"git commit",
"git log",
"node cli",
"nodejs"
],
"author": "Zhang Zixin (kabeep)",
"license": "MIT",
"main": "./lib/index.js",
"module": "./lib/esm/index.mjs",
"types": "./lib/index.d.ts",
"files": [
"lib"
],
"bin": {
"yeareport": "./bin/cli.js"
},
"scripts": {
"prepare": "husky install",
"dev": "npm run build:dev && node bin/cli.js",
"build:dev": "tsup",
"build": "tsup --dts"
},
"devDependencies": {
"@swc/core": "^1.3.102",
"@types/chalk": "^2.2.0",
"@types/cli-spinner": "^0.2.3",
"@types/inquirer": "^9.0.7",
"@types/lodash.intersection": "^4.4.9",
"@types/lodash.startcase": "^4.4.9",
"@types/node": "^20.11.0",
"@types/yargs": "^17.0.32",
"husky": "^8.0.3",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"dependencies": {
"chalk": "4.1.2",
"cli-spinner": "^0.2.10",
"linebyline": "^1.3.0",
"lodash.intersection": "^4.4.0",
"lodash.startcase": "^4.4.0",
"yargs": "^17.7.2"
}
}