automagik-genie
Version:
Universal AI development companion that can be initialized in any codebase
70 lines (69 loc) • 1.8 kB
JSON
{
"name": "automagik-genie",
"version": "1.3.2",
"description": "Universal AI development companion that can be initialized in any codebase",
"main": "lib/init.js",
"bin": {
"automagik-genie": "./bin/automagik-genie"
},
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"clean": "node scripts/clean.js",
"typecheck": "echo \"No TypeScript in this project\"",
"build": "echo \"No build needed - pure Node.js\"",
"prepublishOnly": "npm test",
"bump-patch": "node scripts/bump-version.js patch",
"bump-minor": "node scripts/bump-version.js minor",
"bump-major": "node scripts/bump-version.js major",
"release": "node scripts/release.js",
"update": "node bin/update.js update",
"rollback": "node bin/update.js rollback",
"status": "node bin/update.js status",
"cleanup": "node bin/update.js cleanup",
"test-genie": "node scripts/test-genie-workflow.js"
},
"keywords": [
"ai",
"development",
"assistant",
"claude",
"automation",
"genie",
"universal",
"codebase",
"analysis"
],
"author": "Automagik Genie",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/namastexlabs/automagik-genie.git"
},
"homepage": "https://github.com/namastexlabs/automagik-genie#readme",
"bugs": {
"url": "https://github.com/namastexlabs/automagik-genie/issues"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"bin/",
"lib/",
"templates/",
"README.md",
".claude/"
],
"dependencies": {
"axios": "^1.11.0",
"colors": "^1.4.0",
"fs-extra": "^11.3.0",
"inquirer": "^8.2.6",
"semver": "^7.7.2",
"tar": "^6.0.0",
"yargs": "^17.0.0"
},
"devDependencies": {
"jest": "^30.0.5"
}
}