-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.06 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.06 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "github-star-tracker",
"version": "1.8.4",
"private": true,
"description": "GitHub Action to automatically track star count changes across repositories with visual charts, email notifications, and historical reports",
"main": "src/index.ts",
"keywords": [
"github",
"github-action",
"github-actions",
"github-stars",
"star-tracker",
"star-history",
"tracker",
"monitoring",
"analytics",
"metrics",
"statistics",
"automation",
"reporting",
"notifications",
"badges",
"charts",
"repository",
"devops",
"ci-cd",
"typescript"
],
"author": "Ferran Buireu <fbuireu@gmail.com>",
"license": "AGPL-3.0-only",
"engines": {
"node": "v24.14.1"
},
"packageManager": "pnpm@10.33.0",
"scripts": {
"prepare": "husky",
"build": "tsx esbuild.config.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:changed": "vitest run --changed HEAD",
"format": "pnpm run lint --write",
"lint": "biome check --no-errors-on-unmatched .",
"typecheck": "tsc --noEmit",
"check": "pnpm run lint && pnpm run typecheck && pnpm run test:coverage ",
"validate": "pnpm run check && pnpm run build"
},
"dependencies": {
"@actions/core": "3.0.0",
"@actions/github": "9.1.0",
"js-yaml": "4.1.1",
"nodemailer": "8.0.5"
},
"devDependencies": {
"@biomejs/biome": "2.4.12",
"@commitlint/cli": "20.5.0",
"@commitlint/config-conventional": "20.5.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "13.0.1",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "12.0.6",
"@semantic-release/npm": "13.1.5",
"@semantic-release/release-notes-generator": "14.1.0",
"@types/js-yaml": "4.0.9",
"@types/nodemailer": "8.0.0",
"@vitest/coverage-v8": "4.1.4",
"esbuild": "0.28.0",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"semantic-release": "25.0.3",
"tsx": "4.21.0",
"typescript": "6.0.2",
"vitest": "4.1.4"
}
}