Files
ejabberd/package.json
2026-03-06 15:18:25 +01:00

16 lines
585 B
JSON

{
"name": "ejabberd",
"version": "1.0.0",
"dependencies": {
"bootstrap": "^5.3.8",
"jquery": "^4.0.0"
},
"scripts": {
"postinstall": "npm run -s clean && npm run -s mkdir-jquery && npm run -s cp-jquery && npm run -s cp-bootstrap",
"clean": "rm -rf priv/mod_invites/static/{jquery,bootstrap}",
"mkdir-jquery": "mkdir -p priv/mod_invites/static/jquery",
"cp-jquery": "cp node_modules/jquery/dist/jquery.min.js priv/mod_invites/static/jquery/jquery.min.js",
"cp-bootstrap": "cp -r node_modules/bootstrap/dist priv/mod_invites/static/bootstrap"
}
}