-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.14 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
{
"name": "linkup-sdk",
"version": "1.0.3",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"test": "jest",
"lint": "eslint src/**/*.ts",
"format": "prettier --write \"src/**/*.ts\""
},
"keywords": [
"linkup",
"llm",
"nodejs",
"api",
"sdk",
"client",
"search"
],
"author": "Linkup",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/LinkupPlatform/linkup-js-sdk"
},
"description": "A Javascript Client SDK for the Linkup API",
"files": [
"dist/**/*"
],
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@types/jest": "^29.5.14",
"@types/node-fetch": "^2.6.4",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.13.0",
"jest": "^29.7.0",
"prettier": "^3.4.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"dependencies": {
"axios": "^1.7.9",
"zod": "^3.24.1",
"zod-to-json-schema": "^3.24.1"
}
}