Due to Google Apps Script forcefully pushing "Rhino" to "V8" engine, Applications are moving from Rhino to V8 automatically. So our applications are asking "scopes" that need to be specified manually in "appscript.json" file.
Please check the below image:
File :-
When I update like below, it works fine.
Our concern is that we have more than 100 applications in production, we cannot update this manually everytime. Can you please help us how to update without any issue in production?



Using clasp
You can update the manifest files in batch by using the CLASP project (it uses Apps Script API under the hood) and a utility script in Node.js or your poison of choice to control the workflow. General steps you need to take are:
clasp clone "YourScriptIdHere"appsscript.jsonfile with the required scopes. Since manifest is saved at the root of the project, I would do something like this (with Node.js):clasp push. Since you are changing the manifest, use the--forceoption or you will have to approve each upload. Note that as of 2020, the project does not yet support partial updates, so all files will be replaced. Use.claspignorefile to ensure you do not accidentally push the wholenode_modulesfolder or similar.clasp deploy. The command is customizable, so do not worry about having multiple deployments.