Files
node-metaverse/package.json
Casper Warden da4cd459f1 - Add "GET" method to Caps
- New events: ObjectPhysicsDataEvent, ParcelPropertiesEvent, NewObjectEvent, ObjectUpdateEvent, ObjectKilledEvent
- Added getXML function to Color4, Vector2, Vector3, Vector4, GameObject, Region, Quaternion, UUID for opensim-compatible XML export
- Added TextureAnim and ParticleSystem decoding to the "full" ObjectStore
- Object store will automatically request missing "parent" prims
- "setPersist" - When persist is TRUE, the ObjectStore will not forget about "killed" prims - useful for region scanning
- Support for Flexible params, Light params, LightImage params, Mesh data, Sculpt maps
- Fixed object scale being incorrectly calculated
- Add terrain decoding (this was a ballache)
- Add parcel map decoding
- Add support for region windlight settings (region.environment)
- Add support for materials (normal / specular maps)
- Add getBuffer, getLong and bitwiseOr to UUID
- Added a circular-reference-safe JSONStringify to Utils
- Add XferFile capability to Circuit

PUBLIC API:

AssetCommands:
- Rework "downloadAsset" to detect failures
- NEW: downloadInventoryAsset() - uses TransferRequest for prim inventory items
- NEW: getMaterials() - resolves material UUIDs

RegionCommands:
- NEW: getTerrainTextures()
- NEW: exportSettings() - OpenSim XML export of region settings
- NEW: async getTerrain() - Get binary terrain heightmap, 256x256 float32
- resolveObjects() - now fetches task inventory contents too.
- resolveObjects() - fix calculation of land impact
- NEW: getObjectByLocalID(localID: number, timeout: number)
- NEW: getObjectByUUID(uuid: UUID, timeout: number)
- NEW: getParcels();
- NEW: pruneObjects - removes missing GameObjects from a list
- NEW: setPersist - prevent objectstore from forgetting about killed gameobjects
2018-10-31 11:28:24 +00:00

62 lines
1.6 KiB
JSON

{
"name": "@caspertech/node-metaverse",
"version": "0.5.0",
"description": "A node.js interface for Second Life.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"setup": "npm install",
"prepublish": "npm run build",
"test-only": "mocha -r source-map-support/register dist/tests/",
"pretest": "npm run build",
"test": "npm run test-only",
"build": "tsc --removeComments",
"run": "node -r source-map-support/register example/testBot.js"
},
"engines": {
"node": ">=7.6.0"
},
"author": "CasperTech Ltd",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/CasperTech/node-metaverse.git"
},
"devDependencies": {
"@types/long": "^4.0.0",
"@types/micromatch": "^3.1.0",
"@types/mocha": "^5.2.5",
"@types/node": "^10.11.6",
"@types/request": "^2.47.1",
"@types/tiny-async-pool": "^1.0.0",
"@types/uuid": "^3.4.4",
"@types/validator": "^9.4.2",
"@types/xml": "^1.0.2",
"@types/xmlbuilder": "0.0.34",
"@types/xmlrpc": "^1.3.5",
"mocha": "^5.2.0",
"source-map-support": "^0.5.9",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.1.2"
},
"dependencies": {
"@caspertech/llsd": "^1.0.0",
"ipaddr.js": "^1.8.1",
"long": "^4.0.0",
"micromatch": "^3.1.10",
"moment": "^2.22.2",
"rbush-3d": "0.0.4",
"request": "^2.88.0",
"rxjs": "^6.3.3",
"tar": "^4.4.6",
"tiny-async-pool": "^1.0.1",
"uuid": "^3.3.2",
"validator": "^10.8.0",
"xml": "^1.0.1",
"xmlbuilder": "^10.1.0",
"xmlrpc": "^1.3.2"
}
}