This repository was archived by the owner on Jul 26, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.33 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"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"
}
}