-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.37 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.37 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
{
"name": "month.bar",
"version": "1.0.0",
"description": "Static website for [MonthBar](https://github.com/brightdigit/MonthBar) - a macOS MenuBar app that displays the progress of the current month.",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "astro dev",
"prebuild": "npm run generate:favicons && npm run generate:presskit",
"build": "astro build",
"preview": "astro preview",
"generate:favicons": "node scripts/generate-favicons.js",
"generate:presskit": "node scripts/generate-press-kit-zip.js",
"generate:placeholders": "node scripts/generate-placeholders.js",
"validate-schema": "node scripts/validate-schema.mjs",
"lighthouse": "lhci autorun"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brightdigit/month.bar.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/brightdigit/month.bar/issues"
},
"homepage": "https://github.com/brightdigit/month.bar#readme",
"dependencies": {
"@astrojs/sitemap": "^3.7.0",
"@astrojs/tailwind": "^6.0.2",
"astro": "^5.17.2",
"tailwindcss": "^3.4.19"
},
"devDependencies": {
"@lhci/cli": "^0.15.0",
"@types/node": "^25.2.3",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"archiver": "^7.0.1",
"sharp": "^0.33.0",
"typescript": "^5.9.3"
}
}