-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
62 lines (62 loc) · 1.53 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
59
60
61
62
{
"name": "gradio-chatbot",
"version": "0.0.28",
"description": "A tool that can automatically convert huggingface and modelscope spaces to free API.",
"main": "./dist/index.js",
"engines": {
"node": ">=18"
},
"bin": {
"chatbot": "./dist/bin/cli.js",
"gradio-chatbot": "./dist/bin/cli.js",
"chatbot-server": "./dist/bin/server.js"
},
"scripts": {
"build": "rimraf -rf ./dist && tsc -p ./",
"test": "tsx ./tests/index",
"dev": "tsx ./src/bin/server.ts",
"debug": "cross-env DEBUG=gradio-chatbot tsx ./src/bin/cli.ts",
"prepublishOnly": "npm run build"
},
"author": "weaigc",
"license": "Apache-2.0",
"dependencies": {
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"debug": "^4.3.4",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"ifw": "^0.0.2",
"semiver": "^1.1.0",
"weaigc-turndown": "^7.1.3"
},
"devDependencies": {
"@types/debug": "^4.1.8",
"@types/express": "^4.17.17",
"@types/node": "^20.3.3",
"cross-env": "^7.0.3",
"openai": "^4.6.0",
"rimraf": "^5.0.1",
"tsx": "^3.12.7",
"type-fest": "^3.12.0",
"typescript": "^5.1.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/weaigc/gradio-client.git"
},
"keywords": [
"gradio-client",
"huggingface",
"modelscope",
"ai",
"llm",
"large",
"model",
"inference"
],
"bugs": {
"url": "https://github.com/weaigc/gradio-client/issues"
},
"homepage": "https://github.com/weaigc/gradio-client#readme"
}