-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.09 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
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
84
85
86
{
"name": "@humanlayer/agentlayer-core",
"source": "./src/index.ts",
"type": "module",
"version": "0.0.36",
"private": false,
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"files": [
"src",
"dist",
"models.json",
"README.md"
],
"scripts": {
"test": "bun test",
"typecheck": "tsgo --noEmit",
"build": "bun run build:js && bunx tsc -p tsconfig.build.json",
"build:js": "bun run build.ts",
"build:types": "bunx tsc -p tsconfig.build.json"
},
"devDependencies": {
"@ai-sdk/anthropic": "catalog:",
"@ai-sdk/provider": "catalog:",
"@types/bun": "latest",
"@types/turndown": "5.0.6"
},
"peerDependencies": {
"typescript": "^5"
},
"exports": {
".": {
"source": "./src/index.ts",
"bun": "./src/index.ts",
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./prompts": {
"source": "./src/prompts/index.ts",
"bun": "./src/prompts/index.ts",
"types": "./dist/prompts/index.d.ts",
"import": "./dist/prompts/index.js",
"default": "./dist/prompts/index.js"
},
"./tools": {
"source": "./src/tools/index.ts",
"bun": "./src/tools/index.ts",
"types": "./dist/tools/index.d.ts",
"import": "./dist/tools/index.js",
"default": "./dist/tools/index.js"
},
"./hooks": {
"source": "./src/hooks/index.ts",
"bun": "./src/hooks/index.ts",
"types": "./dist/hooks/index.d.ts",
"import": "./dist/hooks/index.js",
"default": "./dist/hooks/index.js"
},
"./utils": {
"source": "./src/utils/index.ts",
"bun": "./src/utils/index.ts",
"types": "./dist/utils/index.d.ts",
"import": "./dist/utils/index.js",
"default": "./dist/utils/index.js"
},
"./interfaces": {
"source": "./src/interfaces/index.ts",
"bun": "./src/interfaces/index.ts",
"types": "./dist/interfaces/index.d.ts",
"import": "./dist/interfaces/index.js",
"default": "./dist/interfaces/index.js"
}
},
"dependencies": {
"ai": "catalog:",
"chalk": "^5.6.2",
"dedent": "^1.7.2",
"turndown": "7.2.4",
"zod": "catalog:"
}
}