UNPKG

arangojs

Version:

The official ArangoDB JavaScript driver.

65 lines (64 loc) 1.24 kB
{ "name": "arangojs", "version": "9.0.0", "engines": { "node": ">=18" }, "license": "Apache-2.0", "description": "The official ArangoDB JavaScript driver.", "homepage": "https://github.com/arangodb/arangojs", "bugs": { "url": "https://github.com/arangodb/arangojs/issues" }, "repository": { "type": "git", "url": "https://github.com/arangodb/arangojs.git" }, "author": "ArangoDB GmbH", "contributors": [ { "name": "Alan Plum", "email": "me@pluma.io" } ], "keywords": [ "arango", "arangodb", "aql", "nosql", "client", "driver", "api", "http", "rest" ], "main": "cjs/index.js", "module": "esm/index.js", "types": "index.d.ts", "exports": { ".": { "import": "./esm/index.js", "require": "./cjs/index.js", "types": "./index.d.ts" }, "./*": { "import": "./esm/*.js", "require": "./cjs/*.js", "types": "./*.d.ts" }, "./lib/*": { "import": "./esm/lib/*.js", "require": "./cjs/lib/*.js", "types": "./lib/*.d.ts" } }, "files": [ "**/*", "!test/**", "!cjs/test/**", "!esm/test/**" ], "dependencies": { "@types/node": "^20.11.26" } }