-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.4 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
56
57
58
59
60
61
62
63
{
"name": "git-work-record",
"version": "2.0.2",
"description": "根据 Git 提交记录来写日报、周报、月报。 Submit records through Git to write daily, weekly and monthly reports.",
"bin": {
"git-wr": "./bin/index.mjs",
"git-work-record": "./bin/index.mjs"
},
"type": "module",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"stub": "unbuild --stub",
"release": "bumpp --commit --push --tag"
},
"keywords": [
"Git",
"日报",
"周报"
],
"author": "hexiyang",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/iamxiyang/git-work-record.git"
},
"engines": {
"node": ">=16.0.0"
},
"bugs": {
"url": "https://github.com/iamxiyang/git-work-record/issues"
},
"homepage": "https://github.com/iamxiyang/git-work-record#readme",
"dependencies": {
"@iamxiyang/env-checker": "0.1.0-beta.1",
"chalk": "^5.1.2",
"cli-progress": "^3.11.2",
"clipboardy": "^3.0.0",
"dayjs": "^1.11.6",
"update-notifier": "^6.0.2",
"yargs": "^17.6.0",
"zx": "7.0.7"
},
"devDependencies": {
"@types/cli-progress": "^3.11.0",
"@types/node": "*",
"@types/update-notifier": "^6.0.1",
"@types/yargs": "^17.0.13",
"bumpp": "^8.2.1",
"typescript": "^4.8.4",
"unbuild": "^0.8.11"
}
}