mirror of
https://github.com/tiramisulabs/seyfert.git
synced 2025-07-02 04:56:07 +00:00
75 lines
1.6 KiB
JSON
75 lines
1.6 KiB
JSON
{
|
|
"name": "seyfert",
|
|
"version": "0.1.0",
|
|
"main": "./lib/index.js",
|
|
"module": "./lib/index.js",
|
|
"types": "./lib/index.d.ts",
|
|
"files": [
|
|
"lib/**"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc --outDir ./lib",
|
|
"dev": "swc src -d lib -w",
|
|
"prepublishOnly": "npm run build",
|
|
"prepare": "npm run build && husky install",
|
|
"lint": "biome lint --apply ./src",
|
|
"format": "biome format --write ./src",
|
|
"check-h": "biome check --apply ./src",
|
|
"check": "biome check --apply --changed --no-errors-on-unmatched ./src"
|
|
},
|
|
"author": "MARCROCK22",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"chokidar": "^3.5.3",
|
|
"discord-api-types": "^0.37.71",
|
|
"magic-bytes.js": "^1.7.0",
|
|
"ts-mixer": "^6.0.3",
|
|
"ws": "^8.16.0"
|
|
},
|
|
"lint-staged": {
|
|
"*.ts": [
|
|
"biome check --apply",
|
|
"biome format --write"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"lint-staged": "^15.2.2",
|
|
"@biomejs/biome": "1.5.0",
|
|
"@swc/cli": "^0.1.63",
|
|
"@swc/core": "^1.3.102",
|
|
"@types/node": "^20.10.7",
|
|
"@types/ws": "^8.5.10",
|
|
"husky": "^8.0.3",
|
|
"typescript": "^5.3.3"
|
|
},
|
|
"optionalDependencies": {
|
|
"ioredis": "^5.3.2",
|
|
"tweetnacl": "^1.0.3",
|
|
"uWebSockets.js": "github:uNetworking/uWebSockets.js#v20.39.0"
|
|
},
|
|
"homepage": "https://biscuitjs.com",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/tiramisulabs/seyfert.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/tiramisulabs/seyfert"
|
|
},
|
|
"keywords": [
|
|
"api",
|
|
"discord",
|
|
"bots",
|
|
"typescript",
|
|
"botdev"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"contributors": [
|
|
{
|
|
"name": "socram03",
|
|
"url": "https://github.com/socram03"
|
|
}
|
|
]
|
|
}
|