-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.12 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.12 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
{
"name": "llmwhisperer-client",
"version": "2.5.0",
"description": "LLMWhisper JS Client",
"main": "index.js",
"scripts": {
"format": "prettier --ignore-unknown --cache --check .",
"format:write": "prettier --ignore-unknown --write .",
"lint": "eslint --cache '*.{js,ts,tsx}'",
"prepare": "husky",
"test": "jest --runInBand"
},
"author": "Zipstack Inc. <devsupport@zipstack.com>",
"license": "MIT",
"dependencies": {
"axios": "~1.7.2",
"axios-retry": "^4.5.0",
"string-similarity": "^4.0.4",
"winston": "~3.13.0"
},
"devDependencies": {
"@eslint/js": "^9.4.0",
"dotenv": "^16.4.7",
"eslint": "^9.4.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-turbo": "^1.13.3",
"globals": "^15.4.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.5",
"madge": "^7.0.0",
"prettier": "3.3.3",
"prettier-plugin-organize-imports": "^3.2.4"
},
"lint-staged": {
"(!/docs/*).{js,jsx,ts,tsx,md}": "prettier --write"
},
"repository": {
"type": "git",
"url": "https://github.com/Zipstack/llmwhisperer-js-client"
}
}