-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.46 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
{
"name": "mini-games",
"version": "1.0.0",
"description": "A collection of free browser-based mini games",
"keywords": [
"games",
"browser-games",
"html5-games"
],
"author": "mazipan",
"license": "MIT",
"scripts": {
"dev": "concurrently \"bun run dev:css\" \"bun run dev:html\"",
"dev:css": "tailwindcss -i ./src/css/main.css -o ./_site/css/main.css --watch",
"dev:html": "eleventy --serve --incremental",
"build": "bun run build:html && bun run build:css",
"build:html": "eleventy",
"build:css": "tailwindcss -i ./src/css/main.css -o ./_site/css/main.css --minify",
"generate:og": "bun scripts/generate-og-image.mjs",
"generate:favicon": "bun scripts/generate-favicon.mjs",
"format": "prettier --write \"**/*.{html,njk,css,js,json,md}\" --ignore-path .prettierignore",
"format:check": "prettier --check \"**/*.{html,njk,css,js,json,md}\" --ignore-path .prettierignore",
"prepare": "lefthook install --reset-hooks-path"
},
"packageManager": "bun@1.3.12",
"engines": {
"bun": ">=1.3.12"
},
"devDependencies": {
"@11ty/eleventy": "^3.1.6",
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@resvg/resvg-js": "^2.6.2",
"@tailwindcss/cli": "^4.3.0",
"@tailwindcss/postcss": "^4.3.0",
"@twemoji/svg": "^15.0.0",
"concurrently": "^10.0.3",
"lefthook": "^2.1.9",
"postcss": "^8.5.15",
"prettier": "^3.8.3",
"tailwindcss": "^4.3.0"
}
}