@icecoins/plugin-exam
Version:
${PLUGINDESCRIPTION}
96 lines (95 loc) • 2.46 kB
JSON
{
"name": "@icecoins/plugin-exam",
"description": "${PLUGINDESCRIPTION}",
"version": "0.2.0",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"packageType": "plugin",
"platform": "node",
"license": "UNLICENSED",
"author": "${GITHUB_USERNAME}",
"keywords": [
"plugin",
"elizaos"
],
"repository": {
"type": "git",
"url": ""
},
"homepage": "https://elizaos.ai",
"bugs": {
"url": "https://github.com/${GITHUB_USERNAME}/${PLUGINNAME}/issues"
},
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"files": [
"dist",
"README.md",
".npmignore",
"package.json",
"tsup.config.ts"
],
"dependencies": {
"@elizaos/core": "latest",
"@tanstack/react-query": "^5.80.7",
"clsx": "^2.1.1",
"react-dom": "^19.1.0",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.10",
"vite": "^6.3.5",
"zod": "3.24.2"
},
"peerDependencies": {},
"devDependencies": {
"@cypress/react": "^9.0.1",
"@elizaos/cli": "latest",
"@tailwindcss/vite": "^4.1.10",
"@testing-library/cypress": "^10.0.3",
"@vitejs/plugin-react-swc": "^3.10.2",
"cypress": "^14.4.1",
"dotenv": "16.4.5",
"prettier": "3.5.3",
"tailwindcss-animate": "^1.0.7",
"tsup": "8.5.0",
"typescript": "5.8.2"
},
"scripts": {
"start": "elizaos start",
"dev": "elizaos dev",
"build": "tsc --noEmit && vite build && tsup",
"lint": "prettier --write ./src",
"test:component": "bun run test:install && bun test",
"test:e2e": "bun run test:install && bun test",
"test:e2e:manual": "bun run test:install && node scripts/test-e2e-manual.js",
"test:cypress": "bun run test:install && cypress run --component",
"test": "bun run test:install && bun run test:component && bun run test:e2e",
"test:install": "node scripts/install-test-deps.js",
"publish": "elizaos publish",
"format": "prettier --write ./src",
"format:check": "prettier --check ./src"
},
"publishConfig": {
"access": "public"
},
"resolutions": {
"zod": "3.24.2"
},
"agentConfig": {
"pluginType": "elizaos:plugin:1.0.0",
"pluginParameters": {
"API_KEY": {
"type": "string",
"description": "API key for the service"
}
}
}
}