UNPKG

newo

Version:

NEWO CLI: sync flows/skills between NEWO and local files, multi-project support, import AKB articles

63 lines (62 loc) 1.46 kB
{ "name": "newo", "version": "1.4.0", "description": "NEWO CLI: sync flows/skills between NEWO and local files, multi-project support, import AKB articles", "type": "module", "bin": { "newo": "src/cli.js" }, "files": [ "src/**/*.js", "README.md", "CHANGELOG.md", ".env.example" ], "keywords": [ "newo", "cli", "ai", "agent", "automation", "sync", "local-development", "akb", "knowledge-base", "import", "multi-project", "workspace" ], "author": "sabbah13", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/sabbah13/newo-cli.git" }, "bugs": { "url": "https://github.com/sabbah13/newo-cli/issues" }, "homepage": "https://github.com/sabbah13/newo-cli#readme", "engines": { "node": ">=18" }, "dependencies": { "axios": "^1.7.7", "dotenv": "^16.4.5", "fs-extra": "^11.2.0", "js-yaml": "^4.1.0", "minimist": "^1.2.8" }, "devDependencies": { "mocha": "^10.2.0" }, "scripts": { "dev": "node ./src/cli.js", "pull": "node ./src/cli.js pull", "push": "node ./src/cli.js push", "status": "node ./src/cli.js status", "test": "mocha test/*.test.js --timeout 60000", "test:api": "mocha test/api.test.js --timeout 30000", "test:sync": "mocha test/sync.test.js --timeout 60000", "test:integration": "mocha test/integration.test.js --timeout 120000" } }