aios-core
Version:
Synkra AIOS: AI-Orchestrated System for Full Stack Development - Core Framework
67 lines (66 loc) • 1.61 kB
JSON
{
"name": "@synkra/aios-install",
"version": "1.0.0",
"description": "NPX installer for AIOS - AI-Orchestrated System for Full Stack Development",
"main": "src/installer.js",
"bin": {
"aios-install": "./bin/aios-install.js",
"edmcp": "./bin/edmcp.js"
},
"files": [
"bin/",
"src/",
"README.md"
],
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"preversion": "npm test",
"version": "npm run changelog && git add CHANGELOG.md",
"postversion": "git push && git push --tags",
"changelog": "npx conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"release": "npx semantic-release",
"release:dry": "npx semantic-release --dry-run"
},
"keywords": [
"aios",
"installer",
"npx",
"cli",
"setup",
"ai",
"orchestration",
"development"
],
"author": "Synkra AI <team@synkra.ai>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/SynkraAI/aios-core.git"
},
"bugs": {
"url": "https://github.com/SynkraAI/aios-core/issues"
},
"homepage": "https://github.com/SynkraAI/aios-core#readme",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@clack/prompts": "^0.11.0",
"chalk": "^4.1.2",
"commander": "^12.1.0",
"execa": "^5.1.1",
"fs-extra": "^11.3.2",
"js-yaml": "^4.1.0",
"ora": "^5.4.1",
"semver": "^7.7.2"
},
"devDependencies": {
"conventional-changelog-cli": "^4.1.0",
"jest": "^30.2.0"
},
"publishConfig": {
"access": "public"
}
}