Files
templates/build-scripts/package.json
Mauricio Siu abd316fd6e feat: add validation scripts and configuration for Docker Compose and template files
- Introduced a GitHub Actions workflow to validate Docker Compose files and template.toml on pull requests.
- Added helper functions for generating random values and processing variables in templates.
- Implemented validation scripts for checking the structure, syntax, and best practices of Docker Compose and template files.
- Created necessary TypeScript types and configuration files for the build scripts.
2025-12-13 14:38:37 -06:00

25 lines
554 B
JSON

{
"name": "dokploy-templates-build-scripts",
"version": "1.0.0",
"description": "Build scripts for Dokploy Templates validation",
"private": true,
"scripts": {
"validate-template": "tsx validate-template.ts",
"validate-docker-compose": "tsx validate-docker-compose.ts",
"process-meta": "node process-meta.js"
},
"dependencies": {
"toml": "^3.0.0",
"yaml": "2.7.1"
},
"devDependencies": {
"@types/node": "^20.0.0",
"tsx": "^4.7.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18.0.0"
}
}