@gwigz/homunculus-core
Version:
A third-party framework for interacting with Linden Lab's virtual world "Second Life"
64 lines (63 loc) • 1.7 kB
JSON
{
"name": "@gwigz/homunculus-core",
"description": "A third-party framework for interacting with Linden Lab's virtual world \"Second Life\"",
"version": "0.0.0-alpha.16",
"author": "gwigz <gwigz@icloud.com>",
"license": "MIT",
"bugs": "https://github.com/gwigz/homunculus/issues",
"homepage": "https://homunculus.inworld.link/en/docs/core",
"repository": {
"type": "git",
"url": "git+https://github.com/gwigz/homunculus.git"
},
"keywords": [
"bot",
"life",
"second",
"secondlife"
],
"type": "module",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": "./dist/index.js"
},
"scripts": {
"dev": "bun run ./src/index.ts",
"lint": "biome lint .",
"check": "biome check .",
"test": "bun test",
"prebuild": "rm -rf dist && tsc && tsc-alias",
"build": "esbuild src/index.ts --bundle --platform=node --target=node22 --format=esm --packages=external --outfile=dist/index.js",
"precodegen": "find ./src/network/packets -type f ! -name 'packet.ts' -delete",
"codegen": "bun run ./codegen/packets",
"postcodegen": "biome check ./src/network --fix"
},
"dependencies": {
"@keyv/sqlite": "^4.0.4",
"@usebruno/node-machine-id": "^2.0.0",
"@vladfrangu/async_event_emitter": "^2.4.6",
"keyv": "^5.3.3",
"zod": "^3.25.36"
},
"optionalDependencies": {
"https-proxy-agent": "^7.0.6",
"socks": "^2.8.4"
},
"devDependencies": {
"@biomejs/biome": "2.0.0-beta.5",
"@types/bun": "^1.2.15",
"@types/ejs": "^3.1.5",
"@types/node": "^22.15.21",
"@types/xmlrpc": "^1.3.10",
"ejs": "^3.1.10",
"esbuild": "^0.25.4",
"tsc-alias": "^1.8.16"
},
"peerDependencies": {
"typescript": "^5.8.3"
}
}