forked from dzhng/llamaflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.07 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
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "llama-flow",
"description": "The Typescript-first prompt engineering toolkit for working with chat based LLMs.",
"version": "0.8.4",
"packageManager": "[email protected]",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"keywords": [
"typescript",
"chatgpt",
"llama",
"llm",
"ai",
"ml",
"prompt",
"prompt engineering",
"openai"
],
"author": "David Zhang <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/dzhng/llamaflow",
"repository": {
"type": "git",
"url": "[email protected]:dzhng/llamaflow.git"
},
"bugs": {
"url": "https://github.com/dzhng/llamaflow/issues"
},
"scripts": {
"setup": "husky install",
"build": "tsc --build --pretty",
"lint": "eslint src --ext ts,tsx,js,jsx --ignore-path .gitignore --fix",
"test": "jest --passWithNoTests",
"test:update": "jest -u --passWithNoTests",
"playground": "node -r tsconfig-paths/register -r ts-node/register playground"
},
"dependencies": {
"axios": "^1.3.4",
"debug": "^4.3.4",
"jsonic": "^1.0.1",
"lodash": "^4.17.21",
"openai": "^3.2.1",
"tiktoken-node": "^0.0.6",
"zod": "^3.21.4"
},
"peerDependencies": {
"zod": "^3.21.4"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/jest": "^29.5.0",
"@types/jsonic": "^0.3.1",
"@types/lodash": "^4.14.191",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-universe": "^11.1.1",
"eslint-import-resolver-typescript": "^3.3.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.2",
"jest": "^29.5.0",
"lint-staged": "^13.2.0",
"prettier": "^2.8.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --ext ts,tsx,js,jsx --fix --ignore-path .gitignore ",
"prettier --write"
],
"*.{json,md,css,scss}": [
"prettier --write"
]
}
}