-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.17 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.17 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
{
"name": "agent-builder",
"version": "1.0.0",
"main": "dist/examples/standalone/vercel/index.js",
"packageManager": "npm@11.5.2",
"type": "module",
"workspaces": [
"src/examples/standalone/vercel",
"src/examples/standalone/langchain",
"src/examples/telegram/vercel",
"src/examples/email",
"src/examples/xmtp"
],
"scripts": {
"watch": "rimraf dist && tsc --project tsconfig.json --watch",
"start:standalone-vercel": "npm start --prefix ./src/examples/standalone/vercel",
"start:standalone-langchain": "npm start --prefix ./src/examples/standalone/langchain",
"start:email": "npm start --prefix ./src/examples/email",
"start:telegram-bot-vercel": "npm start --prefix ./src/examples/telegram/vercel",
"start:xmtp": "npm start --prefix ./src/examples/xmtp",
"lint": "eslint . --ext ts --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint . --ext ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bosonprotocol/agent-builder.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/bosonprotocol/agent-builder/issues"
},
"homepage": "https://github.com/bosonprotocol/agent-builder#readme",
"description": "",
"overrides": {
"@ai-sdk/provider": "1.1.3",
"viem": "2.37.3"
},
"devDependencies": {
"@types/node": "^24.3.0",
"cross-env": "^10.0.0",
"eslint": "^9.28.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"turbo": "^2.5.6",
"typescript-eslint": "^8.40.0"
},
"dependencies": {
"@bosonprotocol/agentic-commerce": "^1.0.0-alpha.90",
"@bosonprotocol/chat-sdk": "^1.4.1-alpha.7",
"@bosonprotocol/common": "^1.31.0-alpha.11",
"dotenv": "^17.2.1",
"grammy": "^1.38.1",
"rimraf": "^6.0.1"
},
"volta": {
"node": "23.11.1",
"npm": "11.5.2"
},
"imports": {
"#common/*": "./dist/common/*"
}
}