-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.16 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.16 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
{
"name": "agent-kit",
"version": "0.1.0",
"description": "Build payment-enabled agents in 5 minutes - Complete TypeScript monorepo with working agent examples for x402, AP2 and more",
"keywords": ["agents", "payments", "x402", "ap2", "langchain", "typescript", "ai", "micropayments"],
"author": "{xpay✦} <hello@xpay.sh>",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"test": "turbo test",
"lint": "turbo lint",
"typecheck": "turbo typecheck",
"clean": "turbo clean",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"start:demo": "npm run dev --workspace=@x402-agent-kit/demo"
},
"devDependencies": {
"turbo": "^2.2.3",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"packageManager": "pnpm@8.15.0",
"repository": {
"type": "git",
"url": "git+https://github.com/xpaysh/x402-agent-kit.git"
},
"bugs": {
"url": "https://github.com/xpaysh/x402-agent-kit/issues"
},
"homepage": "https://github.com/xpaysh/x402-agent-kit#readme"
}