UNPKG

1.24 kBJSONView Raw
1{
2 "name": "arangojs",
3 "version": "9.0.0",
4 "engines": {
5 "node": ">=18"
6 },
7 "license": "Apache-2.0",
8 "description": "The official ArangoDB JavaScript driver.",
9 "homepage": "https://github.com/arangodb/arangojs",
10 "bugs": {
11 "url": "https://github.com/arangodb/arangojs/issues"
12 },
13 "repository": {
14 "type": "git",
15 "url": "https://github.com/arangodb/arangojs.git"
16 },
17 "author": "ArangoDB GmbH",
18 "contributors": [
19 {
20 "name": "Alan Plum",
21 "email": "me@pluma.io"
22 }
23 ],
24 "keywords": [
25 "arango",
26 "arangodb",
27 "aql",
28 "nosql",
29 "client",
30 "driver",
31 "api",
32 "http",
33 "rest"
34 ],
35 "main": "cjs/index.js",
36 "module": "esm/index.js",
37 "types": "index.d.ts",
38 "exports": {
39 ".": {
40 "import": "./esm/index.js",
41 "require": "./cjs/index.js",
42 "types": "./index.d.ts"
43 },
44 "./*": {
45 "import": "./esm/*.js",
46 "require": "./cjs/*.js",
47 "types": "./*.d.ts"
48 },
49 "./lib/*": {
50 "import": "./esm/lib/*.js",
51 "require": "./cjs/lib/*.js",
52 "types": "./lib/*.d.ts"
53 }
54 },
55 "files": [
56 "**/*",
57 "!test/**",
58 "!cjs/test/**",
59 "!esm/test/**"
60 ],
61 "dependencies": {
62 "@types/node": "^20.11.26"
63 }
64}