mirror of
https://github.com/openclaw/barnacle.git
synced 2026-08-25 11:10:04 -04:00
32 lines
552 B
JSON
32 lines
552 B
JSON
{
|
|
"name": "forwarder",
|
|
"version": "1.0.0",
|
|
"description": "A Discord Gateway Forwarder built with Carbon",
|
|
"type": "module",
|
|
"main": "./src/index.ts",
|
|
"scripts": {
|
|
"start": "bun src/index.ts",
|
|
"dev": "bun --watch src/index.ts",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@buape/carbon": "0.16.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "^1.3.14",
|
|
"typescript": "7.0.2"
|
|
},
|
|
"overrides": {
|
|
"ws": "8.21.0"
|
|
},
|
|
"keywords": [
|
|
"discord",
|
|
"bot",
|
|
"carbon",
|
|
"gateway",
|
|
"forwarder"
|
|
],
|
|
"author": "",
|
|
"license": "MIT"
|
|
}
|