forked from cloudflare/ai-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.13 KB
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
{
"name": "@invokd/ai-utils",
"license": "Apache-2.0",
"version": "1.0.7",
"description": "Utilities for working with AI tools",
"type": "module",
"author": "Dhravya Shah <dhravya@cloudflare.com>",
"scripts": {
"build": "tsc && esbuild src/index.ts --bundle --outfile=dist/index.js --sourcemap --format=esm",
"format": "prettier --write ."
},
"files": [
"dist/*"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"devDependencies": {
"@cloudflare/workers-types": "^4.20250503.0",
"@types/json-schema": "^7.0.15",
"@types/node": "^20.14.8",
"esbuild": "^0.25.3",
"prettier": "^3.3.2",
"typescript": "^5.5.2",
"yaml": "^2.4.5",
"zod": "^3.23.8"
},
"homepage": "https://github.com/keshav0001/ai-utils",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/keshav0001/ai-utils.git"
},
"bugs": {
"url": "https://github.com/keshav0001/ai-utils/issues"
},
"keywords": [
"cloudflare",
"runwithtools",
"max_token",
"temperature"
],
"directories": {
"example": "examples"
},
"dependencies": {
"undici-types": "^6.19.8"
}
}