-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.3 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
{
"name": "tabbit2api",
"version": "0.1.4",
"type": "module",
"description": "Tabbit to OpenAI Responses-compatible gateway for local agent integrations.",
"repository": {
"type": "git",
"url": "git+https://github.com/hwttop5/tabbit2api.git"
},
"bugs": {
"url": "https://github.com/hwttop5/tabbit2api/issues"
},
"homepage": "https://github.com/hwttop5/tabbit2api#readme",
"keywords": [
"tabbit",
"openai",
"responses",
"anthropic",
"gateway",
"cli",
"local-ai"
],
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"bin": {
"tabbit2api": "src/cli.js"
},
"files": [
"src/",
"docs/",
"README.md",
"LICENSE",
"CONTRIBUTING.md",
"examples/"
],
"scripts": {
"hooks:install": "husky",
"commitlint": "commitlint --edit",
"login": "node src/cli.js login",
"probe": "node src/cli.js probe",
"start": "node src/cli.js start",
"test": "node --test"
},
"license": "GPL-3.0-only",
"dependencies": {
"@anthropic-ai/tokenizer": "^0.0.4",
"playwright": "^1.60.0",
"ws": "^8.20.1"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"husky": "^9.1.7"
}
}