This repository was archived by the owner on Jan 23, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.7 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.7 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@agentuity/sdk",
"version": "0.0.158",
"description": "The Agentuity SDK for NodeJS and Bun",
"license": "Apache-2.0",
"public": true,
"sideEffects": false,
"main": "dist/index.js",
"module": "dist/index.js",
"type": "module",
"files": [
"dist/**/*",
"LICENSE.md"
],
"engines": {
"node": ">=22"
},
"author": "Agentuity",
"homepage": "https://agentuity.com",
"repository": {
"type": "git",
"url": "git+https://github.com/agentuity/sdk-js.git"
},
"bugs": {
"url": "https://github.com/agentuity/sdk-js/issues"
},
"keywords": [
"ai",
"agents",
"agentuity",
"ai agent",
"agent"
],
"tsup": {
"entry": [
"src/index.ts"
],
"format": "esm",
"splitting": false,
"sourcemap": true,
"clean": true
},
"scripts": {
"build": "rm -rf dist && tsup && npm run types",
"build-clean-copy": "./scripts/build-clean-copy.sh",
"types": "tsc --emitDeclarationOnly --declaration",
"bun:start": "npm run build && bun run ./dist/index.js",
"node:start": "npm run build && node ./dist/index.js",
"format": "npx @biomejs/biome format --write",
"lint": "npx @biomejs/biome lint --write",
"organize-imports": "npx @biomejs/biome check --formatter-enabled=false --linter-enabled=false --write src",
"changeset": "npx @changesets/cli",
"version": "npx @changesets/cli version",
"release": "npm run build && npx @changesets/cli publish && git push --follow-tags",
"start": "npm run node:start",
"test": "for t in `find ./test -name '*.test.ts'`;do bun test $t || exit 1; done;"
},
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"devDependencies": {
"@biomejs/biome": "2.1.2",
"@types/bun": "latest",
"@types/js-yaml": "^4.0.9",
"@types/mailparser": "^3.4.6",
"@types/nodemailer": "^6.4.17",
"tsup": "^8.4.0"
},
"peerDependencies": {
"botbuilder": "^4.23.2",
"typescript": "^5"
},
"overrides": {
"esbuild": ">=0.25.0"
},
"dependencies": {
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/api-logs": "^0.57.2",
"@opentelemetry/auto-instrumentations-node": "^0.56.1",
"@opentelemetry/core": "^1.21.0",
"@opentelemetry/exporter-logs-otlp-http": "^0.57.2",
"@opentelemetry/exporter-metrics-otlp-http": "^0.57.2",
"@opentelemetry/exporter-trace-otlp-http": "^0.57.2",
"@opentelemetry/host-metrics": "^0.35.5",
"@opentelemetry/resources": "^1.30.1",
"@opentelemetry/sdk-logs": "^0.57.2",
"@opentelemetry/sdk-metrics": "^1.30.1",
"@opentelemetry/sdk-node": "^0.57.2",
"@opentelemetry/semantic-conventions": "^1.30.0",
"@traceloop/node-server-sdk": "^0.18.1",
"js-yaml": "^4.1.0",
"mailparser": "^3.7.4",
"nodemailer": "^7.0.3"
}
}