- Added ENV npm_config_ignore_scripts=true to frontend and backend Dockerfiles to skip scripts during npm install, optimizing build times. - Introduced a postinstall script in package.json to ensure the build process for @mmapp/contracts runs after installation.
34 lines
629 B
JSON
34 lines
629 B
JSON
{
|
|
"name": "@mmapp/contracts",
|
|
"version": "0.1.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"
|
|
}
|
|
}
|