forked from humanlayer/humanlayer
-
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) · 916 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 916 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": "humanlayer-ts-email-classifier",
"version": "0.1.0",
"description": "example of using humanlayer with openai in typescript",
"main": "index.ts",
"type": "module",
"scripts": {
"build": "tsc",
"no-humans": "tsx --env-file=.env 01-no-humans.ts",
"human-review-sync": "tsx --env-file=.env 02-human-review-sync.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/humanlayer/humanlayer.git"
},
"keywords": [
"human-in-the-loop",
"ai-agents",
"tool-use",
"function-calling"
],
"author": "HumanLayer Authors",
"license": "Apache-2.0",
"dependencies": {
"@types/express": "^5.0.0",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"@humanlayer/sdk": "0.7.9",
"openai": "^4.0.0"
},
"devDependencies": {
"@types/node": "^20.14.9",
"ts-node": "^10.9.2",
"tsx": "^4.19.0",
"typescript": "^5.5.2"
}
}