2017-11-21 11:29:09 +00:00
|
|
|
{
|
2017-12-18 17:00:55 +00:00
|
|
|
"name": "@caspertech/node-metaverse",
|
2020-01-09 17:53:22 +00:00
|
|
|
"version": "0.5.13",
|
2017-11-21 11:29:09 +00:00
|
|
|
"description": "A node.js interface for Second Life.",
|
2017-11-21 15:09:26 +00:00
|
|
|
"main": "dist/index.js",
|
|
|
|
|
"types": "dist/index.d.ts",
|
2017-11-21 11:29:09 +00:00
|
|
|
"scripts": {
|
2017-12-18 21:04:21 +00:00
|
|
|
"setup": "npm install",
|
2017-11-21 15:09:26 +00:00
|
|
|
"prepublish": "npm run build",
|
2017-12-20 17:35:40 +00:00
|
|
|
"test-only": "mocha -r source-map-support/register dist/tests/",
|
2017-12-18 21:04:21 +00:00
|
|
|
"pretest": "npm run build",
|
|
|
|
|
"test": "npm run test-only",
|
2017-11-24 01:00:56 +00:00
|
|
|
"build": "tsc --removeComments",
|
2017-12-18 21:04:21 +00:00
|
|
|
"run": "node -r source-map-support/register example/testBot.js"
|
2017-11-21 11:29:09 +00:00
|
|
|
},
|
2017-12-20 14:34:04 +00:00
|
|
|
"engines": {
|
2018-10-12 15:04:29 +01:00
|
|
|
"node": ">=7.6.0"
|
2017-12-18 23:05:44 +00:00
|
|
|
},
|
2017-12-18 17:00:55 +00:00
|
|
|
"author": "CasperTech Ltd",
|
2017-12-18 20:05:29 +00:00
|
|
|
"license": "MIT",
|
2017-12-18 21:04:21 +00:00
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
2017-12-20 14:34:04 +00:00
|
|
|
"url": "git+https://github.com/CasperTech/node-metaverse.git"
|
2017-12-18 17:07:24 +00:00
|
|
|
},
|
2017-11-21 11:29:09 +00:00
|
|
|
"devDependencies": {
|
2018-10-10 10:12:20 +01:00
|
|
|
"mocha": "^5.2.0",
|
2018-10-07 14:54:50 +01:00
|
|
|
"source-map-support": "^0.5.9",
|
2018-10-10 10:12:20 +01:00
|
|
|
"ts-node": "^7.0.1",
|
2018-10-07 14:54:50 +01:00
|
|
|
"tslint": "^5.11.0",
|
2018-10-10 10:12:20 +01:00
|
|
|
"tslint-eslint-rules": "^5.4.0",
|
2019-09-25 19:10:59 +01:00
|
|
|
"typescript": "^3.6.3"
|
2017-11-21 15:09:26 +00:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2020-01-07 21:01:20 +00:00
|
|
|
"@caspertech/llsd": "^1.0.3",
|
2019-09-25 19:10:59 +01:00
|
|
|
"@types/long": "^4.0.0",
|
2019-11-22 16:50:24 +00:00
|
|
|
"@types/micromatch": "^3.1.0",
|
|
|
|
|
"@types/mocha": "^5.2.5",
|
|
|
|
|
"@types/node": "^10.14.19",
|
2019-12-29 17:12:30 +00:00
|
|
|
"@types/request": "^2.48.3",
|
2019-11-22 16:50:24 +00:00
|
|
|
"@types/tiny-async-pool": "^1.0.0",
|
|
|
|
|
"@types/uuid": "^3.4.4",
|
|
|
|
|
"@types/validator": "^9.4.2",
|
|
|
|
|
"@types/xml": "^1.0.2",
|
|
|
|
|
"@types/xml2js": "^0.4.3",
|
|
|
|
|
"@types/xmlrpc": "^1.3.5",
|
2018-10-07 14:54:50 +01:00
|
|
|
"ipaddr.js": "^1.8.1",
|
2018-10-10 10:12:20 +01:00
|
|
|
"long": "^4.0.0",
|
2020-01-22 00:35:57 +00:00
|
|
|
"micromatch": "^4.0.0",
|
- 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
|
|
|
"moment": "^2.22.2",
|
2018-10-12 17:31:14 +01:00
|
|
|
"rbush-3d": "0.0.4",
|
2018-10-07 14:54:50 +01:00
|
|
|
"request": "^2.88.0",
|
2018-10-10 10:12:20 +01:00
|
|
|
"rxjs": "^6.3.3",
|
- 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
|
|
|
"tar": "^4.4.6",
|
2018-10-19 16:30:09 +01:00
|
|
|
"tiny-async-pool": "^1.0.1",
|
2018-10-07 14:54:50 +01:00
|
|
|
"uuid": "^3.3.2",
|
2018-10-10 10:12:20 +01:00
|
|
|
"validator": "^10.8.0",
|
2017-11-21 15:09:26 +00:00
|
|
|
"xml": "^1.0.1",
|
2018-11-05 11:45:04 +00:00
|
|
|
"xml2js": "^0.4.19",
|
2019-09-25 19:10:59 +01:00
|
|
|
"xmlbuilder": "^13.0.2",
|
2017-11-21 15:09:26 +00:00
|
|
|
"xmlrpc": "^1.3.2"
|
2017-11-21 11:29:09 +00:00
|
|
|
}
|
2017-12-18 20:05:29 +00:00
|
|
|
}
|