-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.43 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
{
"name": "@mirror-ai/llmflow",
"version": "1.0.9",
"description": "LLMFlow is a TypeScript-native library for seamless integration, orchestration, and management of Large Language Models (LLMs).",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"private": false,
"public": true,
"sideEffects": false,
"scripts": {
"build": "rollup -c",
"test": "jest",
"test:e2e": "NODE_OPTIONS=--experimental-vm-modules jest --config ./jest-e2e.json"
},
"keywords": [],
"author": "John Childs-Eddy",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-node-resolve": "^15.2.4",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/glob": "^7.1.3",
"@types/jest": "^29.5.13",
"@types/minimatch": "^5.1.2",
"@types/node": "^22.5.5",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"rollup": "^2.79.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.27.3",
"bottleneck": "^2.19.5",
"glob": "^7.1.7",
"minimatch": "^3.0.4",
"openai": "^4.62.1"
}
}