-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.3 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
48
49
50
51
52
53
{
"name": "described-functions",
"version": "1.1.0",
"description": "Utilities and typings to describe and validate functions. Useful when dealing with agentic function calling and MCP.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts",
"node": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"default": "./dist/index.js",
"bun": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
}
},
"scripts": {
"build": "tsc",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ggondim/described-functions.git"
},
"author": {
"email": "gustavospgondim@gmail.com",
"name": "Gustavo Gondim",
"url": "https://github.com/ggondim"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ggondim/described-functions/issues"
},
"homepage": "https://github.com/ggondim/described-functions#readme",
"dependencies": {
"@sinclair/typebox": "^0.34.38",
"keyv": "^5.4.0",
"superjson": "^2.2.2"
},
"devDependencies": {
"@types/node": "^24.0.14",
"ts-advanced-types": "^1.2.0"
}
}