-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.63 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.63 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@chatbees/client",
"version": "0.1.6",
"main": "src/index.ts",
"module": "",
"types": "",
"scripts": {
"build": "rollup -c",
"lint": "eslint src",
"prepare": "husky",
"test": "jest --config '{\"testPathIgnorePatterns\": [\"/node_modules/\", \"/test/real/\"]}'"
},
"keywords": [
"ChatBees",
"chat",
"collection",
"ingestion",
"integration"
],
"author": "ChatBees Inc.<contact@chatbees.ai>",
"description": "ChatBees JavaScript/TypeScript client library",
"bugs": {
"url": "https://github.com/ChatBees/chatbees-javascript-client/issues"
},
"homepage": "https://github.com/ChatBees/chatbees-javascript-client#readme",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/ChatBees/chatbees-javascript-client.git"
},
"license": "MIT",
"private": true,
"dependencies": {
"axios": "^1.7.7",
"dotenv": "^16.4.5"
},
"devDependencies": {
"@babel/core": "^7.25.7",
"@babel/preset-env": "^7.25.7",
"@babel/preset-typescript": "^7.25.7",
"@eslint/js": "^9.11.1",
"@rollup/plugin-terser": "^0.4.4",
"@types/jest": "^29.5.13",
"babel-jest": "^29.7.0",
"eslint": "^9.11.1",
"globals": "^15.10.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"rollup": "^4.24.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-delete": "^2.1.0",
"rollup-plugin-typescript2": "^0.36.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"typescript-eslint": "^8.8.0"
},
"peerDependencies": {
"axios": "^1.7.7",
"dotenv": "^16.4.5"
},
"publishConfig": {
"access": "public"
}
}