-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.9 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.9 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
76
77
78
79
80
81
{
"name": "better-segments-for-strava",
"version": "0.2.0",
"description": "A userscript for Strava that adds additional stats and features to the starred segments page.",
"keywords": [
"typescript",
"javascript",
"userscript",
"fitness",
"greasemonkey",
"userscripts",
"tampermonkey",
"violentmonkey",
"user-script",
"strava"
],
"homepage": "https://johng.io/p/better-segments-for-strava",
"bugs": "https://github.com/twocaretcat/better-segments-for-strava/issues",
"license": "MIT",
"author": {
"name": "John Goodliff",
"url": "https://johng.io"
},
"funding": [
{
"type": "individual",
"url": "https://johng.io/funding"
},
{
"type": "GitHub Sponsors",
"url": "https://github.com/sponsors/twocaretcat"
},
{
"type": "Patreon",
"url": "https://patreon.com/twocaretcat"
},
{
"type": "Brave Creators",
"url": "https://publishers.basicattentiontoken.org/en/c/johng"
}
],
"main": "./dist/better-segments-for-strava.user.js",
"exports": {
".": "./dist/better-segments-for-strava.user.js"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/twocaretcat/better-segments-for-strava.git"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"format": "biome format --write .",
"lint": "biome lint .",
"commit": "cz",
"prepare": "husky",
"postversion": "tsc && vite build"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
},
"devDependencies": {
"@biomejs/biome": "2.0.6",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@semantic-release/git": "^10.0.1",
"@types/bun": "latest",
"commitizen": "^4.3.1",
"conventional-changelog-conventionalcommits": "^9.1.0",
"cz-git": "^1.12.0",
"husky": "^9.1.7",
"semantic-release": "^24.2.7",
"typescript": "^5.8.3",
"vite-plugin-monkey": "^6.0.0",
"vite": "^7.0.5"
}
}