UNPKG

seb-cli-tool

Version:

SEB CLI - Smart Embedded Board Configuration Tool - Cloud-First MCU Management

101 lines (100 loc) 3.03 kB
{ "name": "seb-cli-tool", "version": "1.0.19", "description": "SEB CLI - Smart Embedded Board Configuration Tool - Cloud-First MCU Management", "main": "bin/seb.js", "bin": { "seb": "./bin/seb.js" }, "scripts": { "postinstall": "node scripts/install-python-deps.js", "build": "python3 setup.py build || python setup.py build", "dev": "python3 -m seb.cli.main --verbose || python -m seb.cli.main --verbose", "test": "python3 -m pytest tests/ || python -m pytest tests/", "package": "pyinstaller seb.spec --distpath dist/", "clean": "rm -rf dist/ build/ *.egg-info/ __pycache__/", "start": "node bin/seb.js", "build-binary": "npm run package", "setup-python": "node scripts/setup-python.js", "setup-windows": "node scripts/install-windows.js", "publish": "npm publish", "publish:patch": "npm version patch && npm publish", "publish:minor": "npm version minor && npm publish", "publish:major": "npm version major && npm publish", "publish:dev": "npm version prerelease --preid=dev && npm publish --tag dev", "publish:beta": "npm version prerelease --preid=beta && npm publish --tag beta", "publish:rc": "npm version prerelease --preid=rc && npm publish --tag rc", "publish:prod": "npm version patch && npm publish --tag latest", "publish:prod:minor": "npm version minor && npm publish --tag latest", "publish:prod:major": "npm version major && npm publish --tag latest", "update-version": "node scripts/update-version.js", "version:patch": "npm version patch && npm run update-version", "version:minor": "npm version minor && npm run update-version", "version:major": "npm version major && npm run update-version", "publish-workflow": "node scripts/publish-workflow.js" }, "keywords": [ "firmware", "embedded", "stm32", "avr", "msp430", "mcu", "yaml", "code-generation", "cli", "cloud-registry", "proprietary", "closed-source" ], "author": "Root Access AI", "license": "PROPRIETARY", "repository": { "type": "git", "url": "https://github.com/Root-Access-AI/hideout-cli.git" }, "bugs": { "url": "https://github.com/Root-Access-AI/hideout-cli/issues" }, "homepage": "https://github.com/Root-Access-AI/hideout-cli#readme", "engines": { "node": ">=14.0.0" }, "os": [ "darwin", "linux", "win32" ], "cpu": [ "x64", "arm64" ], "dependencies": { "axios": "^1.11.0", "python-shell": "^5.0.0", "which": "^4.0.0" }, "files": [ "bin/", "dist/", "scripts/", "seb/", "requirements.txt", "setup.py", "README.md", "LICENSE.md", "INSTALLATION.md", "USAGE.md", "docs/", "fix-windows-installation.bat" ], "preferGlobal": true, "publishConfig": { "registry": "https://registry.npmjs.org/" }, "config": { "cloud_api_url": "https://hideout-cli.onrender.com", "update_check_interval": "3600000", "analytics_enabled": true } }