-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
58 lines (58 loc) · 1.45 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
49
50
51
52
53
54
55
56
57
58
{
"name": "ccat-api",
"description": "API Client to communicate with the Cheshire Cat AI",
"license": "MIT",
"version": "0.11.3",
"author": "zAlweNy26",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist/**"
],
"keywords": [
"ccat",
"cheshire-cat",
"api",
"client",
"fastapi",
"openapi",
"ai",
"llm",
"chat",
"bot"
],
"repository": {
"type": "git",
"url": "https://github.com/zAlweNy26/ccat-api.git"
},
"bugs": {
"url": "https://github.com/zAlweNy26/ccat-api/issues"
},
"homepage": "https://github.com/zAlweNy26/ccat-api",
"scripts": {
"build": "tsup index.ts --format cjs,esm --dts",
"release": "pnpm run build && changeset publish",
"lint": "eslint . --ext .js,.ts --fix --ignore-path .gitignore",
"start": "ts-node index.ts",
"generate": "openapi --input ./catapi.json --output ./api --client axios --name CCatAPI --useUnionTypes"
},
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@types/node": "^20.14.10",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"eslint": "^8.57.0",
"openapi-typescript-codegen": "^0.29.0",
"ts-node": "^10.9.2",
"tsup": "^8.1.0",
"typescript": "^5.5.3"
},
"dependencies": {
"@types/ws": "^8.5.10",
"axios": "^1.7.2",
"form-data": "^4.0.0",
"isomorphic-ws": "^5.0.0",
"ws": "^8.18.0"
}
}