-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 879 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 879 Bytes
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
{
"name": "stealthpuppy-blog",
"version": "1.0.0",
"description": "stealthpuppy.com Jekyll blog — custom theme build",
"private": true,
"scripts": {
"build:css": "tailwindcss -i assets/css/main.css -o assets/css/style.css --minify",
"build:icons": "node scripts/copy-icons.js",
"build:fonts": "node scripts/copy-fonts.js",
"build": "npm run build:fonts && npm run build:icons && npm run build:css",
"watch": "tailwindcss -i assets/css/main.css -o assets/css/style.css --watch"
},
"devDependencies": {
"@fontsource-variable/geist": "^5.1.0",
"@fontsource-variable/geist-mono": "^5.1.0",
"@tailwindcss/cli": "^4.0.0",
"@tailwindcss/typography": "^0.5.15",
"lucide-static": "^0.469.0",
"simple-icons": "^14.0.0",
"tailwindcss": "^4.0.0"
},
"dependencies": {
"lunr": "^2.3.9",
"medium-zoom": "^1.1.0"
}
}