-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.74 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.74 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
{
"name": "ao-js-sdk",
"version": "0.4.4",
"description": "A modular TypeScript API client library for AO Process interactions",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist",
"src",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc && tsc-alias",
"postbuild": "node scripts/inject-doc-links.js && npm run generate:mcp",
"generate:mcp": "node scripts/generate-mcp-server.js",
"postgenerate:mcp": "node scripts/build-mcp-server.js",
"configure:mcp": "node scripts/configure-mcp.js",
"setup:mcp": "npm run generate:mcp && npm run configure:mcp",
"prepare": "npm run build",
"test:unit": "ts-node -P test/scripts/tsconfig.json test/scripts/run-tests.ts unit",
"test:integration": "ts-node -P test/scripts/tsconfig.json test/scripts/run-tests.ts integration",
"docs": "npx typedoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RandAOLabs/ao-js-sdk.git"
},
"author": "RandAO",
"license": "MIT",
"keywords": [
"API",
"TypeScript",
"client",
"AO Process",
"modular"
],
"engines": {
"node": ">=22.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.8.6",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"tsconfig-paths": "^4.2.0",
"typedoc-material-theme": "^1.3.0",
"typescript": "^5.6.3"
},
"dependencies": {
"lru-cache": "^11.0.2",
"p-limit": "3.1.0",
"p-retry": "4.6.1",
"rxjs": "^7.8.2",
"zod": "^4.0.5"
},
"peerDependencies": {
"@permaweb/aoconnect": "0.0.77",
"arweave": "^1.15.5"
},
"peerDependenciesMeta": {
"@permaweb/aoconnect": {
"optional": false
},
"arweave": {
"optional": false
}
},
"optionalDependencies": {
"dotenv": "^16.4.5"
}
}