UNPKG

education-module-ai

Version:
100 lines 2.83 kB
{ "name": "education-module-ai", "version": "0.1.2", "description": "AI Education Module using Agent Framework", "main": "lib/index.js", "types": "lib/index.d.ts", "publishConfig": { "access": "public" }, "exports": { ".": { "import": "./lib/index.js", "require": "./lib/index.js", "types": "./lib/index.d.ts" }, "./backend": { "import": "./lib/controllers/index.js", "require": "./lib/controllers/index.js", "types": "./lib/controllers/index.d.ts" }, "./frontend": { "import": "./lib/components/index.js", "require": "./lib/components/index.js", "types": "./lib/components/index.d.ts" }, "./models": { "import": "./lib/models/index.js", "require": "./lib/models/index.js", "types": "./lib/models/index.d.ts" } }, "files": [ "lib", "README.md", "LICENSE" ], "scripts": { "dev": "next dev -p 3008", "build:next": "next build", "build": "tsc -p tsconfig.lib.json && next build", "prepare-npm": "npm run build", "start": "next start", "lint": "next lint", "backend": "tsx watch src/index.ts", "clean": "rimraf lib", "prepublishOnly": "npm run build", "build:simple": "tsc --module NodeNext --moduleResolution NodeNext --target ES2020 --outDir lib --skipLibCheck --declaration src/simple-module.ts" }, "dependencies": { "@defikitdotnet/agent-framework-core": "0.1.1", "@defikitdotnet/agent-framework-backend": "0.1.1", "@defikitdotnet/agent-framework-frontend": "0.1.1", "@elizaos/core": "0.25.9", "@google/generative-ai": "^0.2.1", "axios": "^1.8.2", "better-sqlite3": "^8.5.0", "body-parser": "^1.20.2", "cors": "^2.8.5", "dotenv": "^16.4.0", "express": "^4.21.2", "next": "^14.0.0", "react": "^18.2.0", "react-dom": "^18.2.0", "react-markdown": "^8.0.7", "uuid": "^10.0.0" }, "devDependencies": { "@types/better-sqlite3": "^7.6.4", "@types/body-parser": "^1.19.2", "@types/cors": "^2.8.13", "@types/express": "^4.17.17", "@types/node": "^18.15.3", "@types/react": "^18.2.0", "@types/react-dom": "^18.2.0", "@types/uuid": "^10.0.0", "@typescript-eslint/eslint-plugin": "^5.59.0", "@typescript-eslint/parser": "^5.59.0", "eslint": "^8.38.0", "eslint-plugin-react": "^7.32.2", "eslint-plugin-react-hooks": "^4.6.0", "rimraf": "^5.0.0", "ts-node": "^10.9.2", "ts-node-dev": "^2.0.0", "tsx": "^4.19.3", "typescript": "^5.0.0" }, "keywords": [ "education", "ai", "learning", "agent-framework", "educational-content" ], "author": "Agent Framework Team", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/yourusername/agent-framework.git" } }