-
-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.38 KB
/
Copy pathpackage.json
File metadata and controls
115 lines (115 loc) · 3.38 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "stardrive",
"version": "1.4.1",
"stardriveVersion": "1.4.1",
"private": true,
"description": "The Astro boilerplate to create super stable and fast websites in the AI age",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"prebuild": "npm run sync-version",
"postbuild": "scripts/postbuild.js",
"purge:cloudflare": "node scripts/purgeCloudflareCache.js",
"check": "npm run check:astro && npm run check:type && npm run check:eslint && npm run check:prettier",
"check:astro": "astro check",
"check:type": "npm run generate-types && tsc --noEmit",
"check:eslint": "eslint .",
"check:prettier": "prettier --check .",
"fix": "npm run sync-version && npm run fix:eslint && npm run fix:prettier",
"fix:eslint": "eslint --fix .",
"fix:prettier": "prettier -w .",
"generate-types": "wrangler types",
"sync-version": "node scripts/syncVersion.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peltmonger/stardrive.git"
},
"keywords": [
"astro",
"boilerplate",
"starter",
"template",
"website",
"static",
"fast",
"stable",
"llm",
"ai"
],
"author": {
"name": "Peltmonger Ventures GmbH",
"url": "https://peltmonger.com/"
},
"maintainers": [
{
"name": "Jens Kuerschner",
"url": "https://jekuer.com/"
}
],
"license": "MIT",
"funding": "https://github.com/peltmonger/stardrive?sponsor=1",
"type": "module",
"bugs": {
"url": "https://github.com/peltmonger/stardrive/issues"
},
"homepage": "https://astro-stardrive.com/",
"dependencies": {
"@astrojs/cloudflare": "^14.1.3",
"@astrojs/rss": "^4.0.19",
"@astrojs/sitemap": "^3.7.3",
"@fontsource/geist": "^5.2.9",
"@tailwindcss/vite": "^4.3.3",
"add-to-calendar-button": "^2.15.0",
"astro": "^7.1.0",
"astro-expressive-code": "^0.44.0",
"astro-icon": "^1.1.5",
"leaflet": "^1.9.4",
"pmtiles": "^4.4.1",
"protomaps-leaflet": "^5.1.0",
"sanitize-html": "^2.17.6",
"slot-text": "^0.3.3",
"tailwindcss": "^4.3.3",
"wrangler": "^4.112.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.9",
"@astrojs/markdown-remark": "^7.2.1",
"@astrojs/ts-plugin": "^1.10.10",
"@eslint/js": "^10.0.1",
"@expressive-code/plugin-line-numbers": "^0.44.0",
"@iconify-json/fa7-brands": "^1.2.3",
"@iconify-json/heroicons": "^1.2.3",
"@iconify-json/simple-icons": "^1.2.90",
"@types/leaflet": "^1.9.21",
"@types/sanitize-html": "^2.16.1",
"@typescript-eslint/parser": "^8.64.0",
"astro-compress": "^2.4.1",
"astro-eslint-parser": "^3.0.0",
"eslint": "^10.7.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-astro": "^3.0.1",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-regexp": "^3.1.1",
"eslint-plugin-security": "^4.0.1",
"fs-extra": "^11.3.6",
"globals": "^17.7.0",
"jsdom": "^29.1.1",
"mdast-util-from-markdown": "^2.0.3",
"mdast-util-to-string": "^4.0.0",
"path": "^0.12.7",
"prettier": "^3.9.5",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.8.1",
"reading-time": "^1.5.0",
"rehype-autolink-headings": "^7.1.0",
"sharp": "^0.35.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.64.0",
"url": "^0.11.4"
}
}