| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- {
- "name": "rhedyn",
- "version": "1.0.0",
- "description": "quick and dirty static site renderer",
- "main": "src/index.js",
- "scripts": {
- "generate": "node src/index.js",
- "build": "nexe -i src/index.js -o dist/rhedyn --build --python=$(which python3)",
- "lint-fix": "eslint --fix src/**/*.js"
- },
- "bin": {
- "rhedyn": "src/index.js"
- },
- "exports": {
- "./utils": "./src/util/index.js",
- "./defaultConfig": "./src/defaults.js",
- "./processors": "./src/processors.js"
- },
- "keywords": [],
- "author": "",
- "license": "ISC",
- "type": "module",
- "dependencies": {
- "favicons": "^7.2.0",
- "glob": "^11.0.3",
- "gray-matter": "^4.0.3",
- "handlebars": "^4.7.8",
- "html-minifier-terser": "^7.2.0",
- "marked": "^15.0.6",
- "marked-code-preview": "^1.3.7",
- "safe-stable-stringify": "^2.5.0",
- "sass": "^1.83.1",
- "sharp": "^0.34.2",
- "svgo": "^3.3.2"
- },
- "devDependencies": {
- "@eslint/js": "^9.15.0",
- "eslint": "^9.15.0",
- "nexe": "^3.3.7"
- }
- }
|