@team-falkor/plugin-sdk
Version:
A TypeScript SDK for building Falkor plugins with Elysia framework integration
60 lines (59 loc) • 1.36 kB
JSON
{
"name": "@team-falkor/plugin-sdk",
"version": "1.0.0",
"description": "A TypeScript SDK for building Falkor plugins with Elysia framework integration",
"keywords": [
"falkor",
"plugin",
"sdk",
"typescript",
"elysia",
"framework",
"plugin-development",
"api",
"web-framework"
],
"homepage": "https://github.com/Team-Falkor/plugin-sdk#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Team-Falkor/plugin-sdk.git"
},
"bugs": {
"url": "https://github.com/Team-Falkor/plugin-sdk/issues"
},
"author": "Team Falkor",
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"build": "bun run build.ts",
"prepublishOnly": "bun run build",
"dev": "bun run --watch src/index.ts"
},
"dependencies": {
"@elysiajs/cors": "^1.3.3",
"@team-falkor/shared-types": "^1.0.7",
"elysia": "latest",
"zod": "^3.25.76"
},
"devDependencies": {
"bun-plugin-dts": "^0.3.0",
"bun-types": "latest"
},
"peerDependencies": {
"typescript": "^5.8.2"
}
}