-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.87 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.87 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
{
"name": "contribution",
"description": "GitHub contribution graph parser calculates contribution streak and commit statistics from a user's GitHub contribution graph page",
"version": "8.0.0",
"author": "Jamie Weavis",
"source": "src/main.ts",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"packageManager": "pnpm@10.18.3",
"type": "module",
"homepage": "https://github.com/jamieweavis/contribution",
"repository": "github:jamieweavis/contribution",
"license": "MIT",
"files": [
"dist/**/*"
],
"engine": {
"node": ">=20.0.0",
"pnpm": ">=10.0.0"
},
"keywords": [
"contribution",
"contributions",
"contribution-graph",
"github",
"statistics",
"stats",
"streak",
"streaker",
"parser"
],
"scripts": {
"watch": "parcel watch",
"build": "parcel build",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"check": "biome check",
"check:fix": "biome check --fix"
},
"devDependencies": {
"@biomejs/biome": "2.3.0",
"@parcel/packager-ts": "2.16.0",
"@parcel/transformer-typescript-types": "2.16.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.0",
"@semantic-release/npm": "13.1.1",
"@semantic-release/release-notes-generator": "14.1.0",
"@types/node": "22.18.12",
"@vitest/coverage-v8": "4.0.3",
"parcel": "2.16.0",
"typescript": "5.9.3",
"vite": "7.1.12",
"vitest": "4.0.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"
]
}
}