-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.85 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.85 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
{
"name": "streaker",
"description": "GitHub contribution streak and statistic tracking command line application with ASCII contribution graph",
"version": "2.5.1",
"author": "Jamie Weavis",
"main": "build/src/app.js",
"homepage": "https://github.com/jamieweavis/streaker-cli#readme",
"license": "MIT",
"repository": "https://github.com/jamieweavis/streaker-cli.git",
"bin": {
"streaker": "build/src/app.js"
},
"bugs": {
"url": "https://github.com/jamieweavis/streaker-cli/issues"
},
"keywords": [
"cli",
"contribution",
"contribution-graph",
"contributions",
"github",
"node",
"nodejs",
"streak",
"streaker",
"statistics",
"stats"
],
"scripts": {
"start": "node ./build/src/app.js",
"dev": "ts-node-dev --respawn ./src/app.ts",
"build": "rimraf ./build && tsc",
"check": "biome check ./src",
"check:write": "pnpm check -- --write"
},
"dependencies": {
"colorette": "^2.0.20",
"commander": "^13.1.0",
"contribution": "^7.1.0"
},
"devDependencies": {
"@biomejs/biome": "^2.2.4",
"@commitlint/config-conventional": "^19.8.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.3",
"@types/node": "^22.14.0",
"rimraf": "^6.0.1",
"semantic-release": "^24.2.3",
"ts-node-dev": "^2.0.0",
"typescript": "^5.8.3"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/changelog",
"@semantic-release/commit-analyzer",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github",
"@semantic-release/release-notes-generator"
]
}
}