Major features and improvements: - Fix critical guide template variable replacement bug - Complete guide documentation rewrite with examples - Implement plugin system with HTMLBlock and MQTTTracker plugins - Enhanced bilingual support (NL/EN) throughout the system - Improved template system with better layout options - Enhanced security headers and code quality - Updated documentation and configuration examples Version 1.5.0 represents a significant milestone with improved documentation, plugin architecture, and bug fixes.
26 lines
827 B
JSON
26 lines
827 B
JSON
{
|
|
"name": "codepress",
|
|
"version": "1.5.0",
|
|
"description": "A lightweight, file-based Content Management System built with PHP and Bootstrap.",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"build:css": "npx sass --load-path=node_modules src/scss/main.scss public/assets/css/style.css --style=compressed",
|
|
"watch:css": "npx sass --load-path=node_modules --watch src/scss/main.scss public/assets/css/style.css",
|
|
"build": "npm run build:css",
|
|
"clean": "rm -rf node_modules package-lock.json",
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://git.noorlander.info/E.Noorlander/CodePress.git"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"type": "commonjs",
|
|
"dependencies": {
|
|
"bootstrap": "^5.3.8",
|
|
"sass": "^1.94.2"
|
|
}
|
|
}
|