bunactyl
Version:
TypeScript SDK for Pterodactyl
35 lines (34 loc) • 675 B
JSON
{
"name": "bunactyl",
"version": "1.0.1",
"description": "TypeScript SDK for Pterodactyl",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"scripts": {
"build": "bun build src/index.ts --outdir dist --target node",
"test": "bun test",
"dev": "bun --watch src/index.ts",
"prepublishOnly": "bun run build"
},
"keywords": [
"pterodactyl",
"sdk",
"api",
"typescript",
"bun",
"bunactyl"
],
"author": "irazz",
"license": "AGPL-3.0",
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5"
},
"dependencies": {
"bunactyl": "^1.0.1"
}
}