-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.2 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.2 KB
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
{
"name": "valyu-js",
"version": "2.7.14",
"description": "Deepsearch API for AI.",
"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": "tsup",
"test": "jest",
"test:integration": "node tests/integration-test.js",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/valyuAI/valyu-js.git"
},
"keywords": [
"ai",
"sdk",
"rag",
"valyu",
"search",
"content-extraction",
"deepsearch"
],
"author": "Valyu <harvey@valyu.ai>",
"license": "MIT",
"bugs": {
"url": "https://github.com/valyuAI/valyu-js/issues"
},
"homepage": "https://valyu.ai",
"dependencies": {
"axios": "^1.15.0"
},
"devDependencies": {
"@types/jest": "29.5.14",
"@types/node": "20.19.37",
"dotenv": "16.6.1",
"jest": "29.7.0",
"ts-jest": "29.4.6",
"tsup": "8.5.1",
"typescript": "5.9.3"
}
}