-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.04 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
{
"name": "llmwhisperer-client",
"version": "0.1.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"
},
"author": "Zipstack Inc. <[email protected]>",
"license": "MIT",
"dependencies": {
"axios": "~1.7.2",
"winston": "~3.13.0"
},
"devDependencies": {
"@eslint/js": "^9.4.0",
"dotenv": "^16.4.5",
"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"
}
}