-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
48 lines (48 loc) · 1.23 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
{
"name": "mindsdb-js-sdk",
"version": "2.3.2",
"author": "MindsDB",
"license": "MIT",
"description": "Official JavaScript SDK for MindsDB",
"homepage": "https://github.com/mindsdb/mindsdb-js-sdk#readme",
"repository": {
"type": "git",
"url": "https://github.com/mindsdb/mindsdb-js-sdk.git"
},
"bugs": {
"url": "https://github.com/mindsdb/mindsdb-js-sdk/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"lint": "eslint * --ext .ts",
"test": "jest"
},
"keywords": [
"MindsDB",
"machine-learning",
"mindsdb-sdk"
],
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/json-bigint": "^1.0.4",
"@types/mysql": "^2.15.21",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"jest": "^29.4.1",
"prettier": "^2.8.3",
"ts-jest": "^29.0.5",
"typedoc": "^0.23.25",
"typescript": "^4.9.5"
},
"dependencies": {
"agentkeepalive": "^4.2.1",
"axios": "^1.3.2",
"json-bigint": "^1.0.0",
"mysql": "^2.18.1"
}
}