-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.04 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.04 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
{
"name": "valaxy-addon-git-log",
"type": "module",
"version": "0.4.2",
"packageManager": "pnpm@10.33.0",
"description": "Integrates git logs into your page of Valaxy site.",
"repository": "https://github.com/valaxyjs/valaxy-addon-git-log",
"keywords": [
"valaxy",
"addon",
"valaxy-addon",
"git-log"
],
"main": "index.ts",
"types": "index.d.ts",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest run",
"typecheck": "vue-tsc --noEmit",
"release": "bumpp"
},
"peerDependencies": {
"valaxy": ">=0.22"
},
"dependencies": {
"@octokit/rest": "^22.0.1",
"fs-extra": "^11.3.4",
"gravatar": "^1.8.2",
"md5": "^2.3.0",
"simple-git": "^3.33.0"
},
"devDependencies": {
"@antfu/eslint-config": "^7.7.3",
"@types/fs-extra": "^11.0.4",
"@types/gravatar": "^1.8.6",
"@types/md5": "^2.3.6",
"bumpp": "^11.0.1",
"eslint": "^10.1.0",
"typescript": "^5.9.3",
"valaxy": "^0.28.1",
"vitest": "^4.1.2",
"vue-tsc": "^3.2.6"
}
}