mirror of
https://github.com/tiramisulabs/seyfert.git
synced 2025-07-01 20:46:08 +00:00

* FINALLY WE REACHED AN AGREEMENT * chore: d-types adapt * websocket sucks, rest * changes * new look for core * 💀 * fix cdn routes, more structures Co-authored-by: Free 公園 <FreeAoi@users.noreply.github.com> * CDN routes * chore: change to rome Co-authored-by: Free 公園 <FreeAoi@users.noreply.github.com> * Oh shit, here we go again Co-authored-by: Free 公園 <FreeAoi@users.noreply.github.com> * fixes * mixin, handler events, ws Co-authored-by: Yuzu <yuzudev@users.noreply.github.com> Co-authored-by: Free 公園 <FreeAoi@users.noreply.github.com> * change type * Error system (#133) * Co-authored-by: Free 公園 <FreeAoi@users.noreply.github.com> * chore: biscuit rebase * token leak goes brrrr * fix: events * chore: road to raw data * fix: managers typing * chore: fix gateway typing * feat: helpers * style: linter * Types for routes (#134) * typing for routes * managers Co-authored-by: Marcos Susaña <marcosjgs03@gmail.com> * Types for routes (#134) * I wanna cry * Next (#136) * Merge #137 * chore: lineWidth to 140 * chore: README update --------- Co-authored-by: Yuzu <yuzuru@programmer.net> Co-authored-by: Free 公園 <FreeAoi@users.noreply.github.com> Co-authored-by: ThisIsAName <46913407+NejireSupremacy@users.noreply.github.com> Co-authored-by: MARCROCK22 <57925328+MARCROCK22@users.noreply.github.com> Co-authored-by: MARCROCK22 <marcos22dev@gmail.com>
79 lines
1.6 KiB
JSON
79 lines
1.6 KiB
JSON
{
|
|
"name": "@biscuitland/core",
|
|
"version": "3.0.0",
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts",
|
|
"files": [
|
|
"dist/**"
|
|
],
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"clean": "rm -rf dist && rm -rf .turbo",
|
|
"dev": "tsup --watch"
|
|
},
|
|
"exports": {
|
|
"./package.json": "./package.json",
|
|
".": {
|
|
"import": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.mjs"
|
|
},
|
|
"require": "./dist/index.js"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@biscuitland/common": "^0.0.1",
|
|
"@biscuitland/rest": "^3.0.0",
|
|
"@biscuitland/ws": "^3.0.0",
|
|
"eventemitter2": "^6.4.9"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^18.7.14",
|
|
"tsup": "^6.1.3"
|
|
},
|
|
"license": "Apache-2.0",
|
|
"author": "Yuzuru <yuzuru@programmer.net>",
|
|
"contributors": [
|
|
{
|
|
"name": "Yuzuru",
|
|
"url": "https://github.com/yuzudev"
|
|
},
|
|
{
|
|
"name": "miia",
|
|
"url": "https://github.com/dragurimu"
|
|
},
|
|
{
|
|
"name": "n128",
|
|
"url": "https://github.com/nicolito128"
|
|
},
|
|
{
|
|
"name": "socram03",
|
|
"url": "https://github.com/socram03",
|
|
"author": true
|
|
},
|
|
{
|
|
"name": "Drylozu",
|
|
"url": "https://github.com/Drylozu"
|
|
}
|
|
],
|
|
"homepage": "https://biscuitjs.com",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/oasisjs/biscuit.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/oasisjs/biscuit"
|
|
},
|
|
"keywords": [
|
|
"api",
|
|
"discord",
|
|
"bots",
|
|
"typescript",
|
|
"botdev"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|