mira-app-server
Version:
Mira Server - standalone server application using mira-app-core
82 lines • 2.39 kB
JSON
{
"name": "mira-app-server",
"version": "2.0.8",
"description": "Mira Server - standalone server application using mira-app-core",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"mira-app-server": "dist/cli.js"
},
"files": [
"dist/**/*",
"web/**/*",
"README.md"
],
"publishConfig": {
"access": "public"
},
"keywords": [
"mira",
"server"
],
"author": "hunmer",
"license": "ISC",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"@types/archiver": "^8.0.0",
"@types/multer": "^2.0.0",
"@types/yauzl": "^2.10.3",
"archiver": "^8.0.0",
"axios": "^1.6.2",
"chokidar": "^5.0.0",
"commander": "^11.1.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"fast-glob": "^3.3.3",
"fluent-ffmpeg": "^2.1.3",
"multer": "^2.0.2",
"p-queue": "6.6.2",
"queue": "^7.0.0",
"socket.io": "^4.7.4",
"sqlite3": "^5.1.7",
"which": "^5.0.0",
"ws": "^8.18.3",
"yauzl": "^3.2.0",
"zod": "^3.25.76",
"mira-app-core": "2.0.8"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/fluent-ffmpeg": "^2.1.28",
"@types/jest": "^29.5.8",
"@types/node": "^20.10.0",
"@types/which": "^3.0.4",
"@types/ws": "^8.18.1",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"scripts": {
"build:dashboard": "node scripts/copy-dashboard.mjs",
"build:web": "node scripts/copy-web.mjs",
"build": "pnpm run build:dashboard && pnpm run build:web && tsc",
"rebuild": "pnpm run build",
"start": "node dist/index.js",
"start:ts": "node --inspect -r ts-node/register src/index.ts",
"dev": "node --inspect -r ts-node/register src/index.ts",
"cli": "ts-node src/cli.ts",
"cli:start": "ts-node src/cli.ts start",
"cli:health": "ts-node src/cli.ts health",
"cli:version": "ts-node src/cli.ts version",
"test": "jest --config sdk/jest.config.js",
"test:watch": "jest --config sdk/jest.config.js --watch",
"test:coverage": "jest --config sdk/jest.config.js --coverage",
"test:integration": "node sdk/scripts/test-and-fix.js",
"build:sdk": "tsc --project sdk/tsconfig.json",
"sdk:example": "ts-node sdk/examples/usage-examples.ts",
"prepublish": "npm run build"
}
}