@chaoschain/sdk 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,93 @@
1
+ {
2
+ "name": "@chaoschain/sdk",
3
+ "version": "0.1.0",
4
+ "description": "TypeScript SDK for building verifiable AI agents on ChaosChain",
5
+ "main": "./dist/index.js",
6
+ "module": "./dist/index.mjs",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.mjs",
12
+ "require": "./dist/index.js"
13
+ },
14
+ "./providers/storage": {
15
+ "types": "./dist/providers/storage/index.d.ts",
16
+ "import": "./dist/providers/storage/index.mjs",
17
+ "require": "./dist/providers/storage/index.js"
18
+ },
19
+ "./providers/compute": {
20
+ "types": "./dist/providers/compute/index.d.ts",
21
+ "import": "./dist/providers/compute/index.mjs",
22
+ "require": "./dist/providers/compute/index.js"
23
+ }
24
+ },
25
+ "files": [
26
+ "dist",
27
+ "README.md",
28
+ "LICENSE"
29
+ ],
30
+ "scripts": {
31
+ "build": "tsup",
32
+ "test": "vitest",
33
+ "test:run": "vitest run",
34
+ "test:coverage": "vitest run --coverage",
35
+ "lint": "eslint src",
36
+ "format": "prettier --write src",
37
+ "typecheck": "tsc --noEmit",
38
+ "prepublishOnly": "npm run build"
39
+ },
40
+ "keywords": [
41
+ "chaoschain",
42
+ "erc-8004",
43
+ "x402",
44
+ "ai-agents",
45
+ "blockchain",
46
+ "web3",
47
+ "autonomous-agents",
48
+ "crypto-payments",
49
+ "verifiable-ai"
50
+ ],
51
+ "repository": {
52
+ "type": "git",
53
+ "url": "git+https://github.com/ChaosChain/chaoschain-sdk-ts.git"
54
+ },
55
+ "license": "MIT",
56
+ "dependencies": {
57
+ "axios": "^1.6.0",
58
+ "dotenv": "^16.3.0",
59
+ "ethers": "^6.9.0",
60
+ "form-data": "^4.0.4",
61
+ "jose": "^6.1.0",
62
+ "zod": "^3.22.0"
63
+ },
64
+ "peerDependencies": {
65
+ "@irys/sdk": "^0.1.0",
66
+ "@pinata/sdk": "^2.1.0",
67
+ "ipfs-http-client": "^60.0.0"
68
+ },
69
+ "peerDependenciesMeta": {
70
+ "@pinata/sdk": {
71
+ "optional": true
72
+ },
73
+ "@irys/sdk": {
74
+ "optional": true
75
+ },
76
+ "ipfs-http-client": {
77
+ "optional": true
78
+ }
79
+ },
80
+ "devDependencies": {
81
+ "@types/node": "^20.19.23",
82
+ "@typescript-eslint/eslint-plugin": "^6.0.0",
83
+ "@typescript-eslint/parser": "^6.0.0",
84
+ "eslint": "^8.57.1",
85
+ "prettier": "^3.6.2",
86
+ "tsup": "^8.5.0",
87
+ "typescript": "^5.9.3",
88
+ "vitest": "^1.6.1"
89
+ },
90
+ "engines": {
91
+ "node": ">=18.0.0"
92
+ }
93
+ }