-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.4 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.4 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
{
"name": "@trustunknown/thomas",
"version": "8.0.0",
"description": "Thomas is the plug-and-play model hub that connects your agents to your models, with security guardrails, quotas, fallback, and cost controls.",
"license": "Apache-2.0",
"author": "Thomas Security, Inc.",
"homepage": "https://github.com/trustunknown/thomas",
"repository": {
"type": "git",
"url": "git+https://github.com/trustunknown/thomas.git"
},
"bugs": {
"url": "https://github.com/trustunknown/thomas/issues"
},
"keywords": [
"ai",
"claude",
"claude-code",
"openai",
"codex",
"proxy",
"router",
"llm",
"anthropic",
"cli"
],
"type": "module",
"bin": {
"thomas": "./dist/cli.js"
},
"scripts": {
"build": "bun build src/cli.ts --target=node --outfile=dist/cli.js --banner '#!/usr/bin/env node'",
"dev": "bun run src/cli.ts",
"test": "bun test",
"typecheck": "tsc --noEmit",
"sync:providers": "bun run scripts/sync-providers.ts",
"gen:types": "bun run scripts/gen-cloud-types.ts",
"prepublishOnly": "bun run build && bun test"
},
"files": [
"dist",
"skill",
"SKILL.md",
"README.md",
"LICENSE",
"NOTICE",
"CHANGELOG.md"
],
"engines": {
"node": ">=20"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^20",
"openapi-typescript": "^7.13.0",
"typescript": "^5.6.0"
}
}