-
Notifications
You must be signed in to change notification settings - Fork 140
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.54 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
{
"name": "tailcast",
"type": "module",
"version": "2.0.0",
"license": "MIT",
"description": "Dark themed website template built on Astro and Tailwind CSS, designed for fictional startup",
"author": {
"name": "Mateusz Wyrębek",
"email": "mateusz.wyrebek@gmail.com",
"url": "https://matt765-portfolio.vercel.app/"
},
"repository": {
"type": "git",
"url": "https://github.com/matt765/Tailcast"
},
"homepage": "https://tailcast.vercel.app",
"bugs": "https://github.com/matt765/Tailcast/issues",
"keywords": [
"astro",
"tailwind",
"template",
"landing-page",
"dark-theme",
"theme"
],
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "astro dev",
"start": "astro preview",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@astrojs/sitemap": "^3.7.2",
"@fontsource/inter": "^5.2.8",
"@fontsource/playfair-display": "^5.2.8",
"astro": "^6.1.4"
},
"devDependencies": {
"@astrojs/check": "^0.9.8",
"@eslint/js": "^10.0.1",
"@tailwindcss/vite": "^4.2.2",
"eslint": "^10.2.0",
"eslint-plugin-astro": "^1.7.0",
"prettier": "^3.8.2",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^4.2.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.58.1"
},
"overrides": {
"vite": "^7"
}
}