-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 907 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 907 Bytes
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": "@qingchencloud/cj2api",
"version": "1.0.2",
"description": "将 ChatJimmy 转换为 OpenAI 兼容 API 的 Cloudflare Worker",
"repository": {
"type": "git",
"url": "https://github.com/qingchencloud/cj2api.git"
},
"homepage": "https://github.com/qingchencloud/cj2api#readme",
"bugs": "https://github.com/qingchencloud/cj2api/issues",
"license": "MIT",
"author": "QingChen Cloud",
"keywords": [
"openai",
"api",
"cloudflare-workers",
"chatjimmy",
"proxy",
"llm",
"serverless"
],
"files": [
"src/",
"wrangler.toml",
"tsconfig.json"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "wrangler dev",
"deploy": "wrangler deploy",
"tail": "wrangler tail"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20241218.0",
"typescript": "^5.7.0",
"wrangler": "^3.99.0"
}
}