UNPKG

dcl-npc-toolkit-ai-version

Version:

A collection of tools for creating Non-Player-Characters (NPCs). These are capable of having conversations with the player, and play different animations. AI usage is added atop of it

77 lines (76 loc) 1.63 kB
{ "name": "httpie", "version": "2.0.0-next.13", "repository": "lukeed/httpie", "description": "A lightweight, Promise-based HTTP client for Node.js and the browser~!", "browser": "xhr/index.mjs", "unpkg": "xhr/index.min.js", "worker": "fetch/index.mjs", "module": "node/index.mjs", "main": "node/index.js", "types": "index.d.ts", "license": "MIT", "exports": { ".": { "worker": "./fetch/index.mjs", "browser": "./xhr/index.mjs", "import": "./node/index.mjs", "require": "./node/index.js" }, "./node": { "import": "./node/index.mjs", "require": "./node/index.js" }, "./fetch": { "import": "./fetch/index.mjs", "require": "./fetch/index.js" }, "./browser": { "import": "./xhr/index.mjs", "require": "./xhr/index.js" }, "./xhr": { "import": "./xhr/index.mjs", "require": "./xhr/index.js" }, "./package.json": "./package.json" }, "author": { "name": "Luke Edwards", "email": "luke.edwards05@gmail.com", "url": "https://lukeed.com" }, "engines": { "node": ">=10" }, "scripts": { "pretest": "npm run build", "build": "bundt --main --module --unpkg", "test": "uvu -r esm test" }, "modes": { "fetch": "src/fetch.js", "node": "src/node.js", "xhr": "src/xhr.js" }, "files": [ "*.d.ts", "fetch", "node", "xhr" ], "keywords": [ "http", "fetch", "client", "request", "universal", "promise", "xhr" ], "devDependencies": { "bundt": "1.1.2", "esm": "3.2.25", "uvu": "0.5.1" } }