mirror of
https://github.com/Dokploy/templates.git
synced 2026-03-11 17:48:11 -05:00
- 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.
25 lines
554 B
JSON
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"
|
|
}
|
|
}
|
|
|