-
Notifications
You must be signed in to change notification settings - Fork 175
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.72 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.72 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
{
"name": "TailBliss",
"version": "1.1.2",
"description": "Hugo + Alpine.js + TailwindCSS",
"main": "index.js",
"devDependencies": {
"@tailwindcss/postcss": "^4.2.2",
"@tailwindcss/vite": "^4.2.2",
"alpinejs": "^3.15.8",
"autoprefixer": "^10.4.27",
"concurrently": "^9.2.1",
"postcss": "^8.5.8",
"postcss-cli": "^11.0.1",
"tailwindcss": "^4.2.2",
"vite": "^7.3.1"
},
"scripts": {
"install": "node install.js",
"dev": "npm run build:css:dev && hugo server --disableFastRender --noHTTPCache --disableBrowserError",
"dev:watch": "concurrently \"npm run css:watch\" \"npm run hugo:watch\"",
"css:watch": "vite build --mode development --watch",
"hugo:watch": "hugo server --disableFastRender --noHTTPCache --disableBrowserError",
"build:css": "vite build --mode production",
"build:css:dev": "vite build --mode development --no-watch",
"build": "npm run build:css && hugo --minify --gc --cleanDestinationDir",
"rebuild": "find static/css/ -name 'main.*.css' -delete 2>/dev/null || true && npm run build:css:dev",
"test": "hugo",
"optimize": "npm run build && echo 'Build optimized for production'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nusserstudios/tailbliss.git"
},
"keywords": [
"hugo",
"tailwind",
"tailwindcsgits",
"alpinejs",
"minimal",
"responsive",
"light mode",
"dark mode",
"hugo blog",
"categories",
"tags"
],
"author": "NusserStudios",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/nusserstudios/tailbliss/issues"
},
"homepage": "https://github.com/nusserstudios/tailbliss",
"pnpm": {
"overrides": {
"tar": ">=7.5.2"
}
}
}