-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
70 lines (70 loc) · 1.96 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "llm-ops",
"version": "0.0.12",
"description": "高效制作llm workflow的低代码框架",
"main": "package/index.js",
"author": "Marlene && IdeaLeap",
"repository": "github:idealeap/llm-ops",
"license": "MIT",
"type": "module",
"private": false,
"keywords": [
"Typescript",
"ops",
"gpt",
"openai",
"llm",
"multi-llm"
],
"engines": {
"node": ">=18"
},
"scripts": {
"start": "ts-node --esm ./package/index.ts",
"test": "jest --coverage",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"lint": "eslint --ext .ts,.js ./",
"fix": "eslint --fix --ext ts,js .",
"tsn": "ts-node -r tsconfig-paths/register",
"format": "prettier --write --cache --cache-strategy metadata . !dist",
"build": "bash ./build",
"publish": "cd dist && npm publish --access public"
},
"dependencies": {
"@idealeap/pipeline": "^1.1.7",
"@zilliz/milvus2-sdk-node": "^2.3.2",
"dotenv": "^16.3.1",
"mermaid-ssr": "11.46.16",
"openai": "4.8.0",
"typescript": "^5.1.6"
},
"devDependencies": {
"@microsoft/api-documenter": "^7.23.2",
"@microsoft/api-extractor": "^7.37.0",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.2",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-tsdoc": "^0.2.17",
"jest": "^29.6.2",
"llm-ops": "link:./package",
"node-fetch": "2",
"prettier": "^3.0.0",
"ts-jest": "^29.1.1",
"ts-morph": "^19.0.0",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.6",
"tsc-multi": "^1.1.0",
"tsconfig-paths": "^4.0.0",
"tslib": "^2.6.0",
"vitepress": "^1.0.0-beta.5"
}
}