- Add full Telegram bot functionality with Z.AI API integration
- Implement 4 tools: Bash, FileEdit, WebSearch, Git
- Add 3 agents: Code Reviewer, Architect, DevOps Engineer
- Add 6 skills for common coding tasks
- Add systemd service file for 24/7 operation
- Add nginx configuration for HTTPS webhook
- Add comprehensive documentation
- Implement WebSocket server for real-time updates
- Add logging system with Winston
- Add environment validation
🤖 zCode CLI X - Agentic coder with Z.AI + Telegram integration
58 lines
993 B
JSON
58 lines
993 B
JSON
{
|
|
"name": "p-map",
|
|
"version": "7.0.4",
|
|
"description": "Map over promises concurrently",
|
|
"license": "MIT",
|
|
"repository": "sindresorhus/p-map",
|
|
"funding": "https://github.com/sponsors/sindresorhus",
|
|
"author": {
|
|
"name": "Sindre Sorhus",
|
|
"email": "sindresorhus@gmail.com",
|
|
"url": "https://sindresorhus.com"
|
|
},
|
|
"type": "module",
|
|
"exports": {
|
|
"types": "./index.d.ts",
|
|
"default": "./index.js"
|
|
},
|
|
"sideEffects": false,
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"scripts": {
|
|
"test": "xo && ava && tsd"
|
|
},
|
|
"files": [
|
|
"index.js",
|
|
"index.d.ts"
|
|
],
|
|
"keywords": [
|
|
"promise",
|
|
"map",
|
|
"resolved",
|
|
"wait",
|
|
"collection",
|
|
"iterable",
|
|
"iterator",
|
|
"race",
|
|
"fulfilled",
|
|
"async",
|
|
"await",
|
|
"promises",
|
|
"concurrently",
|
|
"concurrency",
|
|
"parallel",
|
|
"bluebird"
|
|
],
|
|
"devDependencies": {
|
|
"ava": "^5.2.0",
|
|
"chalk": "^5.3.0",
|
|
"delay": "^6.0.0",
|
|
"in-range": "^3.0.0",
|
|
"random-int": "^3.0.0",
|
|
"time-span": "^5.1.0",
|
|
"tsd": "^0.29.0",
|
|
"xo": "^0.56.0"
|
|
}
|
|
}
|