-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 781 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 781 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
{
"name": "fourier-universal",
"module": "src/index.ts",
"type": "module",
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"bun": "^1.0.35",
"ts-pattern": "^5.0.8"
},
"version": "1.0.0",
"description": "A universal API for OpenAI and Anthropic's language models.",
"main": "index.ts",
"scripts": {
"test": "bun test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mttias/fourier.git"
},
"keywords": [
"anthropic",
"openai",
"universal",
"api"
],
"author": "mttias",
"license": "ISC",
"bugs": {
"url": "https://github.com/mttias/fourier/issues"
},
"homepage": "https://github.com/mttias/fourier#readme"
}