build: initialize project

This commit is contained in:
Sebin Nyshkim 2025-04-02 11:21:39 +02:00
commit 98eb24f9d0
5 changed files with 3182 additions and 0 deletions

21
package.json Normal file
View file

@ -0,0 +1,21 @@
{
"name": "character-ref",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "eleventy --serve ",
"build": "ELEVENTY_PRODUCTION=true eleventy",
"prebuild": "rm -rf ./public"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"type": "module",
"dependencies": {
"@11ty/eleventy": "^3.0.0",
"@11ty/eleventy-img": "^6.0.1",
"@11ty/eleventy-navigation": "^1.0.1",
"@11ty/eleventy-plugin-webc": "^0.11.2"
}
}