UNPKG

@gebrai/gebrai

Version:

Model Context Protocol server for GeoGebra mathematical visualization

82 lines (81 loc) 2.12 kB
{ "name": "@gebrai/gebrai", "version": "1.1.0", "description": "Model Context Protocol server for GeoGebra mathematical visualization", "main": "dist/index.js", "private": false, "bin": { "geogebra-mcp": "./dist/cli.js", "gebrai": "./dist/cli.js" }, "files": [ "dist/**/*", "package.json", "README.md", "LICENSE" ], "scripts": { "dev": "ts-node src/index.ts", "build": "npm run clean && tsc", "build:watch": "tsc --watch", "start": "node dist/index.js", "clean": "rimraf dist", "test": "jest", "test:watch": "jest --watch", "test:ci": "jest --ci --coverage --watchAll=false", "test:coverage": "jest --coverage", "test:compatibility": "npx ts-node test-gemini-compatibility.ts", "test:schema": "npx ts-node test-schema-compatibility.ts", "lint": "eslint src/**/*.ts", "lint:fix": "eslint src/**/*.ts --fix", "format": "prettier --write src/**/*.ts", "format:check": "prettier --check src/**/*.ts", "prepublishOnly": "npm run build" }, "keywords": [ "mcp", "model-context-protocol", "geogebra", "mathematics", "visualization", "ai-tools", "educational-technology", "mathematical-modeling" ], "author": "efebaus@pm.me", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/gebrai/gebrai.git" }, "homepage": "https://github.com/gebrai/gebrai#readme", "bugs": { "url": "https://github.com/gebrai/gebrai/issues" }, "publishConfig": { "access": "public" }, "dependencies": { "@gebrai/gebrai": "^1.0.1", "dotenv": "^16.3.1", "puppeteer": "^22.8.2", "uuid": "^9.0.1", "winston": "^3.11.0" }, "devDependencies": { "@types/jest": "^29.5.8", "@types/node": "^20.10.0", "@types/uuid": "^9.0.7", "@typescript-eslint/eslint-plugin": "^6.12.0", "@typescript-eslint/parser": "^6.12.0", "eslint": "^8.54.0", "jest": "^29.7.0", "nodemon": "^3.0.1", "ts-jest": "^29.1.1", "ts-node": "^10.9.1", "typescript": "^5.3.2" }, "engines": { "node": ">=18.0.0" } }