-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 873 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 873 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
{
"name": "libllm",
"version": "0.0.42",
"description": "CodeSpin.AI's LLM library",
"main": "dist/index.js",
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --",
"build": "rm -rf dist && npx tsc"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/codespin-ai/libllm.git"
},
"keywords": [
"llm"
],
"license": "MIT",
"author": "CodeSpin.AI",
"bugs": {
"url": "https://github.com/codespin-ai/libllm/issues"
},
"homepage": "https://github.com/codespin-ai/codespin#readme",
"dependencies": {
"@anthropic-ai/sdk": "^0.36.2",
"@types/node": "^22.10.10",
"openai": "^4.80.1",
"tiktoken": "^1.0.18"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3"
}
}