Add package.json and basic ignore

This commit is contained in:
thePR0M3TH3AN
2025-07-10 10:13:42 -04:00
parent e87d26096b
commit 4661a6ed87
3 changed files with 2467 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
_site/
node_modules/

2449
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

16
package.json Normal file
View File

@@ -0,0 +1,16 @@
{
"name": "docforge",
"version": "1.0.0",
"description": "DocForge static site generator",
"scripts": {
"dev": "eleventy --serve",
"build": "eleventy"
},
"dependencies": {
"@11ty/eleventy": "^2.0.1",
"gray-matter": "^4.0.3",
"marked": "^11.1.1",
"lunr": "^2.3.9"
},
"license": "MIT"
}