Merge pull request #1 from PR0M3TH3AN/codex/create-package.json-and-setup-dependencies

Add initial Node.js setup for DocForge
This commit is contained in:
thePR0M3TH3AN
2025-07-10 10:14:11 -04:00
committed by GitHub
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"
}