@marteye/studio-cli
Version:
CLI for MartEye Studio API
74 lines (73 loc) • 1.91 kB
JSON
{
"name": "@marteye/studio-cli",
"version": "1.0.2",
"description": "CLI for MartEye Studio API",
"main": "dist/index.js",
"bin": {
"studio": "./dist/cli.js"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src --ext .ts",
"typecheck": "tsc --noEmit --skipLibCheck",
"prepublishOnly": "yarn build",
"studio": "node dist/cli.js",
"check:package": "node scripts/check-npm-package.js",
"pack:dry": "npm pack --dry-run",
"publish:dry": "npm publish --dry-run",
"build:publish": "rm -rf dist && npm run build && npm publish --access public"
},
"keywords": [
"marteye",
"studio",
"cli",
"livestock",
"market"
],
"author": "MartEye Studio",
"license": "MIT",
"dependencies": {
"@marteye/studiojs": "1.1.35",
"chalk": "^4.1.2",
"cli-table3": "^0.6.3",
"commander": "^11.1.0",
"dotenv": "^16.3.1",
"inquirer": "^8.2.6",
"jmespath": "^0.16.0",
"js-yaml": "^4.1.0",
"ora": "^5.4.1",
"csv-stringify": "^6.4.4"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.5",
"@types/inquirer": "^8.2.10",
"@types/jest": "^29.5.8",
"@types/jmespath": "^0.15.2",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.9.0",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"eslint": "^8.54.0",
"jest": "^29.7.0",
"rollup": "^4.5.0",
"rollup-plugin-preserve-shebang": "^1.0.1",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE",
"package.json"
],
"engines": {
"node": ">=14.0.0"
}
}