-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.86 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 2.86 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
101
102
{
"name": "agent0-sdk",
"version": "1.7.1",
"description": "TypeScript SDK for agent portability, discovery and trust based on ERC-8004",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./eip6963": {
"types": "./dist/browser/eip6963.d.ts",
"default": "./dist/browser/eip6963.js"
}
},
"scripts": {
"codegen": "graphql-codegen --config codegen.yml",
"generate:taxonomies": "node ./scripts/generate-taxonomies.mjs",
"prebuild": "npm run codegen && npm run generate:taxonomies",
"build": "tsc",
"prepack": "npm run build",
"build:watch": "tsc --watch",
"pretest": "npm run generate:taxonomies",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"x402-server": "node tests/x402-server/server.mjs",
"test:x402-integration": "RUN_X402_INTEGRATION=1 jest --testPathPattern=x402-integration",
"test:x402-anvil": "RUN_X402_ANVIL=1 jest --testPathPattern=x402-anvil",
"a2a-server": "node tests/a2a-server/server.mjs",
"test:a2a-integration": "RUN_A2A_INTEGRATION=1 jest --testPathPattern=a2a-integration",
"test:a2a-anvil": "RUN_A2A_ANVIL=1 jest --testPathPattern=a2a-anvil",
"forge:build": "forge build",
"anvil:node": "anvil --port 8545",
"lint": "eslint src",
"format": "prettier --write src",
"clean": "rm -rf dist"
},
"keywords": [
"erc-8004",
"agent",
"blockchain",
"ethereum",
"ipfs",
"reputation"
],
"author": "Agent0 Team <team@ag0.xyz>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/agent0lab/agent0-ts"
},
"homepage": "https://sdk.ag0.xyz",
"bugs": {
"url": "https://github.com/agent0lab/agent0-ts/issues"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE",
"package.json"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@helia/unixfs": "^4.0.0",
"graphql-request": "^6.1.0",
"helia": "^5.0.0",
"kubo-rpc-client": "^6.1.0",
"multiformats": "^13.0.0",
"undici": "^6.23.0",
"viem": "^2.37.5"
},
"devDependencies": {
"@graphql-codegen/cli": "^6.0.1",
"@graphql-codegen/introspection": "^5.0.0",
"@graphql-codegen/typescript": "^5.0.2",
"@graphql-codegen/typescript-operations": "^5.0.2",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.6",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"dotenv": "^16.3.1",
"eslint": "^8.56.0",
"graphql": "^16.9.0",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=22.0.0"
},
"overrides": {
"nanoid": "^5.1.6",
"parse-duration": "^2.1.3"
}
}