@ordino.ai/cli
Version:
ordino.ai global command line interface
66 lines (65 loc) • 2.1 kB
JSON
{
"name": "@ordino.ai/cli",
"version": "1.0.106",
"description": "ordino.ai global command line interface",
"main": "bin/cli.js",
"engines": {
"node": ">=22.18.0",
"npm": ">=10.9.3"
},
"scripts": {
"semantic-release": "semantic-release",
"build": "babel src --out-dir dist/src --extensions \".ts,.js\" && babel bin --out-dir dist/bin --extensions \".ts,.js\" && npm run copy-templates && npm run copy-env",
"copy-templates": "node -e \"require('ncp').ncp('./templates', './dist/templates', function (err) { if (err) return console.error(err); console.log('Templates copied!'); });\"",
"copy-env": "node -e \"require('fs').copyFileSync('.env.local', './dist/.env.local'); require('fs').copyFileSync('.env.production', './dist/.env.production'); require('fs').copyFileSync('.env.staging', './dist/.env.staging'); console.log('Environment files copied!');\"",
"prepare": "npm run build",
"start": "node dist/bin/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ORDINO-AI-LLC/ordino-cli.git"
},
"bugs": {
"url": "https://github.com/ORDINO-AI-LLC/ordino-cli/issues"
},
"homepage": "https://github.com/ORDINO-AI-LLC/ordino-cli#readme",
"bin": {
"ordino": "./dist/bin/cli.js"
},
"keywords": [
"CLI",
"boilerplate",
"project-setup",
"microfrontend",
"automation"
],
"author": "ordino.ai",
"license": "GPL-3.0",
"dependencies": {
"@types/express": "^5.0.3",
"axios": "^1.8.1",
"commander": "^13.0.0",
"dotenv": "^16.4.7",
"express": "^5.1.0",
"inquirer": "^12.3.0",
"javascript-obfuscator": "^4.1.0",
"open": "^10.2.0",
"semantic-release": "^24.2.0"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/plugin-transform-typescript": "^7.26.8",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@types/node": "^22.13.8",
"ncp": "^2.0.0",
"typescript": "^5.8.2"
},
"release": {
"name": "beta",
"prerelease": "beta"
}
}