-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.17 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
{
"name": "inference-client",
"version": "0.0.7",
"description": "Jina Inference Client for JavaScript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "NODE_ENV=test NODE_OPTIONS=--experimental-vm-modules jest --logHeapUsage --runInBand --config ./jest.base.js --coverage --forceExit",
"lint": "eslint \"src/**/*.ts\" --fix",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/jina-ai/inference-client-js.git"
},
"author": "Jina AI",
"license": "Apache-2.0",
"engines": {
"node": ">=18"
},
"dependencies": {
"tslib": "^2.5.2",
"undici": "^5.22.1"
},
"devDependencies": {
"@types/node": "^20.3.0",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.42.1",
"eslint": "^8.42.0",
"husky": "^8.0.1",
"prettier": "^2.8.8"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.ts": [
"eslint"
]
}
}