-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 867 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 867 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
{
"name": "@cloudflare/ai-utils",
"license": "Apache-2.0",
"version": "1.0.1",
"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",
"dependencies": {},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240620.0",
"@types/json-schema": "^7.0.15",
"@types/node": "^20.14.8",
"esbuild": "^0.21.5",
"prettier": "^3.3.2",
"typescript": "^5.5.2",
"yaml": "^2.4.5",
"zod": "^3.23.8"
},
"homepage": "https://github.com/cloudflare/ai-utils",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/cloudflare/ai-utils.git"
}
}