- Initialize git repository - Add comprehensive .gitignore (protects .env and secrets) - Fix package.json (correct main entry, add metadata) - Expand .env.example with all required variables and comments - Add README.md with architecture, setup, and commands - Clean up empty scaffolding directories (logs removed, agents/models marked) - Backup previous .env file locally This establishes a safe foundation before further development.
34 lines
No EOL
715 B
JSON
34 lines
No EOL
715 B
JSON
{
|
|
"name": "netanalyzer",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"main": "server.js",
|
|
"type": "commonjs",
|
|
"description": "NetAnalyzer - Webex bot for store network and device health analysis using Meraki, SIW, and MDM integrations",
|
|
"scripts": {
|
|
"start": "node server.js",
|
|
"dev": "nodemon server.js"
|
|
},
|
|
"keywords": [
|
|
"webex",
|
|
"bot",
|
|
"meraki",
|
|
"network-analysis",
|
|
"store-health"
|
|
],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"dependencies": {
|
|
"axios": "^1.16.1",
|
|
"dotenv": "^17.4.2",
|
|
"express": "^5.2.1",
|
|
"webex-node-bot-framework": "^2.5.1",
|
|
"ws": "^8.20.1"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "^3.1.14"
|
|
}
|
|
} |