forked from exa-labs/exa-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.46 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@exa-labs/exa-js-beta",
"version": "1.0.14-beta.3",
"description": "[Beta] Exa SDK for Node.js and the browser",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"module": "./dist/index.mjs",
"import": "./dist/index.mjs"
},
"./package.json": "./package.json"
},
"types": "./dist/index.d.ts",
"scripts": {
"build-fast": "tsup src/index.ts --format cjs,esm",
"build": "tsup",
"test": "vitest run",
"generate-docs": "typedoc --plugin typedoc-plugin-markdown --out docs src/index.ts",
"prepublishOnly": "npm run build"
},
"license": "MIT",
"devDependencies": {
"prettier": "2.8.4",
"tsup": "6.6.3",
"typescript": "4.9.5",
"typedoc": "^0.25.4",
"typedoc-plugin-markdown": "^3.17.1",
"vitest": "0.28.5"
},
"dependencies": {
"cross-fetch": "^4.0.0"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/exa-labs/exa-js-beta.git"
},
"keywords": [
"exa",
"metaphor",
"search",
"AI",
"LLMs",
"RAG",
"retrieval",
"augmented",
"generation"
],
"author": "jeffzwang",
"bugs": {
"url": "https://github.com/exa-labs/exa-js/issues"
},
"homepage": "https://github.com/exa-labs/exa-js-private-beta#readme"
}