ryuu
Version:
Domo App Dev Studio CLI, The main tool used to create, edit, and publish app designs to Domo
95 lines • 2.95 kB
JSON
{
"name": "ryuu",
"version": "5.0.2",
"description": "Domo App Dev Studio CLI, The main tool used to create, edit, and publish app designs to Domo",
"keywords": [
"CLI",
"Domo",
"Ryuu",
"App"
],
"homepage": "https://developer.domo.com/portal/rmfbkwje8kmqj-domo-apps-cli",
"license": "SEE LICENSE IN LICENSE",
"bin": {
"domo": "./dist/bin/domo.js"
},
"files": [
"dist/",
"dist/bin/",
"dist/commands/",
"dist/models/",
"dist/server/",
"dist/templates/",
"dist/util/"
],
"dependencies": {
"@domoinc/ryuu-proxy": "^5.0.2",
"async": "^3.2.6",
"axios": "^1.13.0",
"chalk": "^4.1.2",
"cli-table3": "^0.6.5",
"commander": "^14.0.1",
"configstore": "^7.1.0",
"enquirer": "^2.4.1",
"express": "^5.1.0",
"extract-zip": "^2.0.1",
"fs-extra": "^11.3.2",
"glob": "^11.0.3",
"jwt-decode": "^4.0.0",
"lodash": "^4.17.21",
"open": "^10.2.0",
"qs": "^6.14.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"ryuu-client": "^4.4.5",
"semver": "^7.7.3",
"shelljs": "^0.10.0",
"slug": "^11.0.1",
"source-map-support": "^0.5.21",
"validator": "^13.15.15",
"vite": "^7.1.11",
"@vitejs/plugin-react": "^5.0.4"
},
"devDependencies": {
"@types/async": "^3.2.25",
"@types/configstore": "^6.0.2",
"@types/express": "^5.0.3",
"@types/extract-zip": "^2.0.3",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.9",
"@types/inquirer-autocomplete-prompt": "^3.0.3",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.17.20",
"@types/node": "^24.9.1",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@types/semver": "^7.7.1",
"@types/shelljs": "^0.8.17",
"@types/slug": "^5.0.9",
"@types/validator": "^13.15.3",
"@typescript-eslint/eslint-plugin": "^8.46.1",
"@typescript-eslint/parser": "^8.46.1",
"dotenv": "^17.2.3",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"husky": "^9.1.7",
"jest": "^30.2.0",
"prettier": "^3.6.2",
"ts-jest": "^29.4.5",
"typescript": "^5.9.3"
},
"scripts": {
"build": "rm -rf ./dist && tsc",
"postbuild": "cp -r \"src/server/domodev/\" \"dist/server/domodev\" && cp -r \"src/server/ui/\" \"dist/server/ui\" && cp \"src/bin/runner\" \"dist/bin/\" && cp \"src/bin/domo.cmd\" \"dist/bin/\" && cp -r \"templates/\" \"dist/templates\"",
"release:production": "pnpm run build && pnpm publish",
"release:alpha": "pnpm run build && pnpm publish --tag alpha",
"release:beta": "pnpm run build && pnpm publish --tag beta",
"lint": "eslint src --ext .ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:integration": "node scripts/integration-test.js",
"test:integration:validate": "node scripts/validate-integration-setup.js"
}
}