Docker images / prepare-release (push) Successful in 38s
Docker images / backend-image (push) Has been skipped
Docker images / frontend-image (push) Has been skipped
Docker images / updater-image (push) Has been skipped
Docker images / publish-release (push) Has been skipped
Docker images / notify-webhook (push) Has been skipped
- Bumped application version to 1.0.0 across all relevant package files, ensuring consistency in versioning. - Introduced new environment variables for application version and release URL in Dockerfiles, improving deployment transparency. - Enhanced the health check endpoint to return the current application version, providing better visibility for monitoring. - Updated CI/CD workflows to include steps for preparing and publishing releases, streamlining the release process. - Added a new "Releases" section in the application sidebar for easier access to version information.
34 lines
629 B
JSON
34 lines
629 B
JSON
{
|
|
"name": "@mmapp/contracts",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc -p tsconfig.json"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
},
|
|
"./servers": {
|
|
"types": "./dist/servers.d.ts",
|
|
"default": "./dist/servers.js"
|
|
},
|
|
"./alerts": {
|
|
"types": "./dist/alerts.d.ts",
|
|
"default": "./dist/alerts.js"
|
|
},
|
|
"./events": {
|
|
"types": "./dist/events.d.ts",
|
|
"default": "./dist/events.js"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"zod": "^4.4.1"
|
|
}
|
|
}
|