-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 1.88 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "poe2gpt",
"publisher": "nicepkg",
"description": "🔑 Unimpeded: Convert Poe.com to OpenAI Interface-Compatible Format! 畅通无阻: 将 Poe.com 转换为 OpenAI 接口兼容格式!",
"version": "0.2.8",
"author": "Nicepkg <2214962083@qq.com>",
"license": "MIT",
"funding": "https://github.com/sponsors/2214962083",
"homepage": "https://github.com/nicepkg/poe2gpt#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/nicepkg/poe2gpt.git"
},
"bugs": {
"url": "https://github.com/nicepkg/poe2gpt/issues"
},
"sponsor": {
"url": "https://github.com/sponsors/2214962083"
},
"keywords": [
"poe",
"poe.com",
"poe-to-openai",
"poe-openai-proxy",
"poe-to-gpt",
"proxy",
"chatgpt",
"openai",
"claude",
"gemini",
"llama",
"llm",
"ai",
"gpt",
"anthropic"
],
"main": "./dist/index.js",
"bin": {
"poe2gpt": "dist/cli.js"
},
"files": [
"dist/",
"LICENSE",
"*.md"
],
"scripts": {
"build": "tsup",
"commit": "git add . && cz",
"dev": "esno ./src/dev.ts",
"prepare": "husky",
"test": "tsc --noEmit"
},
"dependencies": {
"argparse": "^2.0.1",
"commander": "^12.1.0",
"esno": "^4.7.0",
"express": "^4.19.2",
"express-rate-limit": "^7.4.0",
"toml": "^3.0.0",
"winston": "^3.14.2",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/argparse": "^2.0.16",
"@types/express": "^4.17.21",
"@types/node": "^22.4.0",
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@commitlint/cz-commitlint": "^19.4.0",
"commitizen": "^4.3.0",
"husky": "^9.1.4",
"tsup": "^8.2.4",
"typescript": "^5.5.4"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "./cz-adapter.cjs"
}
}
}